UNPKG

@softwareventures/maintain-project

Version:

Automatically create and maintain TypeScript projects with standard settings for Software Ventures Limited

7 lines (6 loc) 192 B
export interface File { readonly type: "file"; readonly data: Uint8Array; } export declare function file(data: Uint8Array): File; export declare function textFile(text: string): File;