Files
vscode/build/lib/typings/asar.d.ts
2025-11-12 16:22:40 -08:00

10 lines
336 B
TypeScript

declare module 'asar/lib/filesystem.js' {
export default class AsarFilesystem {
readonly header: unknown;
constructor(src: string);
insertDirectory(path: string, shouldUnpack?: boolean): unknown;
insertFile(path: string, shouldUnpack: boolean, file: { stat: { size: number; mode: number } }, options: {}): Promise<void>;
}
}