mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 03:29:00 +01:00
Back button constant (#49340)
This commit is contained in:
@@ -455,6 +455,11 @@ export function createApiFactory(
|
||||
registerProtocolHandler: proposedApiFunction(extension, (handler: vscode.ProtocolHandler) => {
|
||||
return extHostUrls.registerProtocolHandler(extension.id, handler);
|
||||
}),
|
||||
get quickInputBackButton() {
|
||||
return proposedApiFunction(extension, (): vscode.QuickInputButton => {
|
||||
return extHostQuickOpen.backButton;
|
||||
})();
|
||||
},
|
||||
createQuickPick: proposedApiFunction(extension, (): vscode.QuickPick => {
|
||||
return extHostQuickOpen.createQuickPick(extension.id);
|
||||
}),
|
||||
|
||||
Reference in New Issue
Block a user