MCPcopy
hub / github.com/stackblitz/bolt.new / File

Interface File

app/lib/stores/files.ts:16–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14const utf8TextDecoder = new TextDecoder('utf8', { fatal: true });
15
16export interface File {
17 type: 'file';
18 content: string;
19 isBinary: boolean;
20}
21
22export interface Folder {
23 type: 'folder';

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected