1 | export const features: string[];
|
2 |
|
3 | export interface BrowserSupport {
|
4 | [browser: string]: {
|
5 | y?: number | undefined;
|
6 | n?: number | undefined;
|
7 | a?: number | undefined;
|
8 | x?: number | undefined;
|
9 | p?: number | undefined;
|
10 | };
|
11 | }
|
12 |
|
13 | export function getSupport(feature: string): BrowserSupport;
|
14 |
|
15 | export function isSupported(
|
16 | feature: string,
|
17 | browsers: string | readonly string[],
|
18 | ): boolean;
|
19 |
|
20 | export function find(query: string): string[];
|
21 |
|
22 | export function getLatestStableBrowsers(): string[];
|
23 |
|
24 | export function setBrowserScope(
|
25 | browserscope: string | readonly string[],
|
26 | ): void;
|
27 |
|
28 | export function getBrowserScope(): string[];
|