configcat-common
Version:
ConfigCat is a configuration as a service that lets you manage your features and configurations without actually deploying new code.
13 lines • 553 B
TypeScript
export declare function setupPolyfills(): void;
export declare function ObjectValuesPolyfill<T>(o: {
[s: string]: T;
} | ArrayLike<T>): T[];
export declare function ObjectEntriesPolyfill<T>(o: {
[s: string]: T;
} | ArrayLike<T>): [string, T][];
export declare function ObjectFromEntriesPolyfill<T>(entries: Iterable<readonly [PropertyKey, T]>): {
[k: string]: T;
};
export declare function getWeakRefStub<T extends object>(): WeakRefConstructor;
export declare const isWeakRefAvailable: () => boolean;
//# sourceMappingURL=Polyfills.d.ts.map