mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-11 18:41:06 -06:00
11 lines
206 B
TypeScript
11 lines
206 B
TypeScript
declare module 'chromium-pickle-js' {
|
|
export interface Pickle {
|
|
writeString(value: string): void;
|
|
writeUInt32(value: number): void;
|
|
|
|
toBuffer(): Buffer;
|
|
}
|
|
|
|
export function createEmpty(): Pickle;
|
|
}
|