Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/build/lib/typings/@vscode/gulp-electron.d.ts
4774 views
1
/*---------------------------------------------------------------------------------------------
2
* Copyright (c) Microsoft Corporation. All rights reserved.
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
*--------------------------------------------------------------------------------------------*/
5
6
declare module '@vscode/gulp-electron' {
7
8
interface MainFunction {
9
(options: any): NodeJS.ReadWriteStream;
10
dest(destination: string, options: any): NodeJS.ReadWriteStream;
11
}
12
13
const main: MainFunction;
14
export default main;
15
}
16
17