workflow_launcher/node_modules/builder-util-runtime/out/blockMapApi.d.ts

13 lines
265 B
TypeScript
Raw Normal View History

2024-03-12 07:57:14 -04:00
export interface FileChunks {
checksums: Array<string>;
sizes: Array<number>;
}
export interface BlockMap {
version: "1" | "2";
files: Array<BlockMapFile>;
}
export interface BlockMapFile extends FileChunks {
name: string;
offset: number;
}