UNPKG

@softwareventures/maintain-project

Version:

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

7 lines 200 B
export function file(data) { return { type: "file", data }; } export function textFile(text) { return { type: "file", data: new TextEncoder().encode(text) }; } //# sourceMappingURL=file.js.map