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 6declare 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