DefinitelyTyped/types/react-dev-utils/getCacheIdentifier.d.ts
2019-01-28 18:42:18 +05:00

7 lines
248 B
TypeScript

/**
* 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;