15 lines
317 B
TypeScript
15 lines
317 B
TypeScript
![]() |
export class ConfigBase {
|
||
|
name: string = '';
|
||
|
version:string = '1.0.0';
|
||
|
enable:boolean = true;
|
||
|
[key: string]: any;
|
||
|
}
|
||
|
|
||
|
export interface FileOptions {
|
||
|
encode?: string;
|
||
|
addBOM?: boolean;
|
||
|
}
|
||
|
export interface FileInfo extends FileOptions {
|
||
|
name: string,
|
||
|
content: string | Blob | Uint8Array,
|
||
|
}
|