Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/build/lib/typings/chromium-pickle-js.d.ts
4772 views
1
declare module 'chromium-pickle-js' {
2
export interface Pickle {
3
writeString(value: string): void;
4
writeUInt32(value: number): void;
5
6
toBuffer(): Buffer;
7
}
8
9
export function createEmpty(): Pickle;
10
}
11
12