nx-remotecache-custom
Version:
Build custom caching for @nrwl/nx in a few lines of code
5 lines (4 loc) • 435 B
TypeScript
import { CustomRunnerOptions } from "./types/custom-runner-options";
import { RemoteCacheImplementation } from "./types/remote-cache-implementation";
import { SafeRemoteCacheImplementation } from "./types/safe-remote-cache-implementation";
export declare const getSafeRemoteCacheImplementation: (implementationPromise: Promise<RemoteCacheImplementation>, options: CustomRunnerOptions) => Promise<SafeRemoteCacheImplementation | null>;