UNPKG

nx-remotecache-custom-3

Version:

Build custom caching for @nrwl/nx in a few lines of code

8 lines (7 loc) 661 B
import { RemoteCacheImplementation } from "./types/remote-cache-implementation"; export declare const retrieveSuccess: ({ name }: RemoteCacheImplementation, file: string) => void; export declare const retrieveFailure: ({ name }: RemoteCacheImplementation, file: string, error: any) => void; export declare const setupFailure: (error?: any) => void; export declare const storeSuccess: ({ name }: RemoteCacheImplementation, file: string) => void; export declare const storeFailure: ({ name }: RemoteCacheImplementation, file: string, error: any) => void; export declare const checkFailure: ({ name }: RemoteCacheImplementation, file: string, error: any) => void;