-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
interface.ts
43 lines (41 loc) · 1.1 KB
/
interface.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/**
* Configuration interface for compression operations.
*
* @interface compressInterface
*/
export interface compressInterface {
/**
* Specifies whether to exclude the source directory from the compression.
* If set to true, the `src` directory will not be included in the compressed output.
* By default, the `src` directory is included.
*
* @type {boolean}
* @memberof compressInterface
*/
excludeSrc?: boolean;
/**
* Specifies whether to enable debug mode.
* In debug mode, all files and folders being processed will be listed.
* By default, no such information is displayed.
*
* @type {boolean}
* @memberof compressInterface
*/
debug?: boolean;
}
/**
* Configuration interface for uncompression (decompression) operations.
*
* @interface uncompressInterface
*/
export interface uncompressInterface {
/**
* Specifies whether to enable debug mode.
* In debug mode, all files and folders being processed will be listed.
* By default, no such information is displayed.
*
* @type {boolean}
* @memberof uncompressInterface
*/
debug?: boolean;
}