$ cnpm install @types/caniuse-api
npm install --save @types/caniuse-api
This package contains type definitions for caniuse-api (https://github.com/nyalab/caniuse-api#readme).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/caniuse-api.
// Type definitions for caniuse-api 3.0
// Project: https://github.com/nyalab/caniuse-api#readme
// Definitions by: Dave Cardwell <https://github.com/davecardwell>
// Matt Miller <https://github.com/matt123miller>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
export const features: string[];
export interface BrowserSupport {
[browser: string]: {
y?: number | undefined;
n?: number | undefined;
a?: number | undefined;
x?: number | undefined;
p?: number | undefined;
};
}
export function getSupport(feature: string): BrowserSupport;
export function isSupported(
feature: string,
browsers: string | ReadonlyArray<string>
): boolean;
export function find(query: string): string[];
export function getLatestStableBrowsers(): string[];
export function setBrowserScope(
browserscope: string | ReadonlyArray<string>
): void;
export function getBrowserScope(): string[];
These definitions were written by Dave Cardwell, and Matt Miller.
Copyright 2013 - present © cnpmjs.org | Home |