8 lines
184 B
TypeScript
8 lines
184 B
TypeScript
|
export interface FileOptions {
|
||
|
encode?: string;
|
||
|
addBOM?: boolean;
|
||
|
}
|
||
|
export interface FileInfo extends FileOptions {
|
||
|
name: string,
|
||
|
content: string | Blob | Uint8Array,
|
||
|
}
|