diff --git a/utils/hostapi.d.ts b/utils/hostapi.d.ts index 4c3bb1845d..b13a0fc01c 100644 --- a/utils/hostapi.d.ts +++ b/utils/hostapi.d.ts @@ -61,13 +61,6 @@ export interface AzureHostExtensionApi { */ registerActivity(activity: Activity): Promise; - /** - * - * @param filter Whether to filter the list returned, according to the list returned - * by `getTenantFilters()` and `getSubscriptionFilters()`. - */ - getSubscriptions: (filter: boolean) => Promise; - //#region Deprecated things that will be removed soon /** @@ -86,6 +79,13 @@ export interface AzureHostExtensionApi { registerLocalResourceProvider(id: string, provider: LocalResourceProvider): vscode.Disposable; //#endregion + + /** + * @deprecated For internal usage only + * @param filter Whether to filter the list returned, according to the list returned + * by `getTenantFilters()` and `getSubscriptionFilters()`. + */ + getSubscriptions: (filter: boolean) => Promise; } export interface AppResourceFilter {