DefinitelyTyped/types/react-dev-utils/getCacheIdentifier.d.ts

7 lines
248 B
TypeScript
Raw Normal View History

2019-01-28 12:46:34 +00:00
/**
* Returns a cache identifier (string) consisting of the specified environment
* and related package versions.
*/
declare function getCacheIdentifier(environment: string, packages: ReadonlyArray<string>): string;
export = getCacheIdentifier;