UNPKG

@pellegrims/nx-remotecache-s3

Version:
12 lines (11 loc) 462 B
import type { CustomRunnerOptions } from 'nx-remotecache-custom'; import type { RemoteCacheImplementation } from 'nx-remotecache-custom/types/remote-cache-implementation'; export interface S3Options { bucket?: string; endpoint?: string; forcePathStyle?: boolean; prefix?: string; profile?: string; region?: string; } export declare const setupS3TaskRunner: (options: CustomRunnerOptions<S3Options>) => Promise<RemoteCacheImplementation>;