21 lines
625 B
TypeScript
Raw Normal View History

2022-07-12 09:00:22 +02:00
export declare enum CacheFilename {
Gzip = "cache.tgz",
Zstd = "cache.tzst"
}
export declare enum CompressionMethod {
Gzip = "gzip",
ZstdWithoutLong = "zstd-without-long",
Zstd = "zstd"
}
2023-02-22 17:47:24 -08:00
export declare enum ArchiveToolType {
GNU = "gnu",
BSD = "bsd"
}
2022-07-12 09:00:22 +02:00
export declare const DefaultRetryAttempts = 2;
export declare const DefaultRetryDelay = 5000;
export declare const SocketTimeout = 5000;
2023-02-22 17:47:24 -08:00
export declare const GnuTarPathOnWindows: string;
export declare const SystemTarPathOnWindows: string;
export declare const TarFilename = "cache.tar";
export declare const ManifestFilename = "manifest.txt";