mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-20 18:28:58 +00:00
10 lines
336 B
TypeScript
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>;
|
|
}
|
|
}
|