Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/build/lib/typings/asar.d.ts
4772 views
1
declare module 'asar/lib/filesystem.js' {
2
3
export default class AsarFilesystem {
4
readonly header: unknown;
5
constructor(src: string);
6
insertDirectory(path: string, shouldUnpack?: boolean): unknown;
7
insertFile(path: string, shouldUnpack: boolean, file: { stat: { size: number; mode: number } }, options: {}): Promise<void>;
8
}
9
}
10
11