UNPKG

@netlify/cache-utils

Version:

Utility for caching files in Netlify Build

15 lines (14 loc) 519 B
export { getCacheDir } from './dir.js'; export { list } from './list.js'; export declare const save: any; export declare const restore: any; export declare const remove: any; export declare const has: any; export declare const bindOpts: (opts: any) => { save: (paths: any, optsA: any) => any; restore: (paths: any, optsA: any) => any; remove: (paths: any, optsA: any) => any; has: (paths: any, optsA: any) => any; list: (optsA: any) => Promise<string[]>; getCacheDir: (optsA: any) => string; };