File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ export declare type PromiseOrNot<T> = T | Promise<T>;
7474export interface IDebugAdapter {
7575 registerEventHandler ( eventHandler : ( event : DebugProtocol . Event ) => void ) : void ;
7676
77- initialize ( args : DebugProtocol . InitializeRequestArguments ) : PromiseOrNot < DebugProtocol . Capabilites > ;
77+ initialize ( args : DebugProtocol . InitializeRequestArguments ) : PromiseOrNot < DebugProtocol . Capabilities > ;
7878 launch ( args : ILaunchRequestArgs ) : PromiseOrNot < void > ;
7979 configurationDone ( args : DebugProtocol . ConfigurationDoneArguments ) : void ;
8080 disconnect ( ) : PromiseOrNot < void > ;
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ export class WebKitDebugAdapter implements IDebugAdapter {
7373 this . _eventHandler = eventHandler ;
7474 }
7575
76- public initialize ( args : DebugProtocol . InitializeRequestArguments ) : DebugProtocol . Capabilites | Promise < DebugProtocol . Capabilites > {
76+ public initialize ( args : DebugProtocol . InitializeRequestArguments ) : DebugProtocol . Capabilities | Promise < DebugProtocol . Capabilities > {
7777 // Cache to log if diagnostic logging is enabled later
7878 this . _initArgs = args ;
7979 return {
You can’t perform that action at this time.
0 commit comments