@uizard/nx-fast-s3-cache
Version:
Nx s3 cache using GNU tar, pigz and multipart s3 uploads/downloads
13 lines (12 loc) • 526 B
TypeScript
import type { S3Options } from ".";
import { CustomRunnerOptions } from "../types/custom-runner-options";
export declare const buildCommonCommandInput: ({ bucket, prefix, filename, }: {
bucket: string | undefined;
prefix: string;
filename: string;
}) => {
Bucket: string;
Key: string;
};
export declare const isReadOnly: (options: CustomRunnerOptions<S3Options>, envReadOnly: string) => boolean;
export declare const isWriteOnly: (options: CustomRunnerOptions<S3Options>, envWriteOnly: string) => boolean;