Common getCompressionMethod for listTar and extractTar

This commit is contained in:
Lovepreet Singh
2022-08-18 11:01:22 +00:00
parent 98a4069558
commit ce68daa10e
2 changed files with 54 additions and 65 deletions
+6
View File
@@ -11,6 +11,12 @@ export enum CompressionMethod {
Zstd = 'zstd'
}
export enum TarOperation {
Create = 'create',
List = 'list',
Extract = 'extract'
}
// The default number of retry attempts.
export const DefaultRetryAttempts = 2