File tree Expand file tree Collapse file tree
src/client/debugger/extension/configuration/providers Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33
44'use strict' ;
55
6- import * as vscode from 'vscode' ;
76import * as path from 'path' ;
87import * as fs from 'fs-extra' ;
8+ import { WorkspaceFolder } from 'vscode' ;
99import { injectable } from 'inversify' ;
1010import { DebugConfigStrings } from '../../../../common/utils/localize' ;
1111import { MultiStepInput } from '../../../../common/utils/multiStepInput' ;
@@ -64,7 +64,7 @@ export class PyramidLaunchDebugConfigurationProvider implements IDebugConfigurat
6464 Object . assign ( state . config , config ) ;
6565 }
6666 public async validateIniPath (
67- folder : vscode . WorkspaceFolder | undefined ,
67+ folder : WorkspaceFolder | undefined ,
6868 defaultValue : string ,
6969 selected ?: string ,
7070 ) : Promise < string | undefined > {
@@ -84,7 +84,7 @@ export class PyramidLaunchDebugConfigurationProvider implements IDebugConfigurat
8484 }
8585 }
8686
87- protected async getDevelopmentIniPath ( folder : vscode . WorkspaceFolder | undefined ) : Promise < string | undefined > {
87+ protected async getDevelopmentIniPath ( folder : WorkspaceFolder | undefined ) : Promise < string | undefined > {
8888 if ( ! folder ) {
8989 return ;
9090 }
You can’t perform that action at this time.
0 commit comments