mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 11:38:51 +01:00
resolveNotebook API command takes no argument
This commit is contained in:
@@ -275,9 +275,9 @@ const newCommands: ApiCommand[] = [
|
||||
new ApiCommand(
|
||||
'vscode.resolveNotebookContentProviders', '_resolveNotebookContentProvider', 'Resolve Notebook Content Providers',
|
||||
[
|
||||
new ApiCommandArgument<string, string>('viewType', '', v => typeof v === 'string', v => v),
|
||||
new ApiCommandArgument<string, string>('displayName', '', v => typeof v === 'string', v => v),
|
||||
new ApiCommandArgument<object, object>('options', '', v => typeof v === 'object', v => v),
|
||||
// new ApiCommandArgument<string, string>('viewType', '', v => typeof v === 'string', v => v),
|
||||
// new ApiCommandArgument<string, string>('displayName', '', v => typeof v === 'string', v => v),
|
||||
// new ApiCommandArgument<object, object>('options', '', v => typeof v === 'object', v => v),
|
||||
],
|
||||
new ApiCommandResult<{
|
||||
viewType: string;
|
||||
|
||||
Reference in New Issue
Block a user