3.25.5 • Published 6 months ago

@types/polyfill-service v3.25.5

Weekly downloads
25
License
MIT
Repository
github
Last release
6 months ago

Installation

npm install --save @types/polyfill-service

Summary

This package contains type definitions for polyfill-service (https://github.com/financial-times/polyfill-service#readme).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/polyfill-service.

index.d.ts

// Type definitions for polyfill-service 3.25
// Project: https://github.com/financial-times/polyfill-service#readme
// Definitions by: Arturas Molcanovas <https://github.com/Alorel>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.3

export type PolyfillFlag = 'gated' | 'always';
export type Unknown = 'polyfill' | 'ignore';

export interface Feature {
    flags?: PolyfillFlag[] | undefined;
}

export interface Features {
    [feature: string]: Feature;
}

export interface GetPolyfillsOptions {
    uaString: string;
    features?: Features | undefined;
    excludes?: string[] | undefined;
}

export interface GetPolyfillStringOptions extends GetPolyfillsOptions {
    minify?: boolean | undefined;
    unknown?: Unknown | undefined;
}

export interface PolyfillSpec {
    aliasOf?: Set<string> | undefined;
    flags: Set<PolyfillFlag>;
}

export interface GetPolyfillsResponse {
    [name: string]: PolyfillSpec;
}

export function listAllPolyfills(): Promise<ReadonlyArray<string>>;

export function getPolyfillString(options: GetPolyfillStringOptions): Promise<string>;

export function getPolyfills(options: GetPolyfillsOptions): Promise<GetPolyfillsResponse>;

Additional Details

  • Last updated: Thu, 08 Jul 2021 20:19:42 GMT
  • Dependencies: none
  • Global values: none

Credits

These definitions were written by Arturas Molcanovas.

3.25.3

7 months ago

3.25.2

8 months ago

3.25.5

6 months ago

3.25.4

6 months ago

3.25.1

3 years ago

3.25.0

6 years ago