UNPKG

@uizard/nx-fast-s3-cache

Version:

Nx s3 cache using GNU tar, pigz and multipart s3 uploads/downloads

8 lines (7 loc) 729 B
import { RemoteCacheImplementation } from "./types/remote-cache-implementation"; export declare const retrieveSuccess: ({ name }: RemoteCacheImplementation, file: string, timings?: Record<string, number>) => 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, timings?: Record<string, number>) => void; export declare const storeFailure: ({ name }: RemoteCacheImplementation, file: string, error: any) => void; export declare const checkFailure: ({ name }: RemoteCacheImplementation, file: string, error: any) => void;