Skip to content

Commit

Permalink
fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
penalosa committed Oct 3, 2024
1 parent 9e8960d commit 5e0df56
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ export async function activate(context: vscode.ExtensionContext) {
} = {
showQuickPick,
showInputBox,
// @ts-ignore
multiStepInput,
quickOpen,
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -225,15 +225,6 @@ database_id = "${crypto.randomUUID()}"`;
return name === "SOME_KV_BINDING" ? "Name not unique" : undefined;
}

async function getAvailableRuntimes(
resourceGroup: QuickPickItem | string,
token?: CancellationToken
): Promise<QuickPickItem[]> {
// ...retrieve...
await new Promise((resolve) => setTimeout(resolve, 1000));
return ["Node 8.9", "Node 6.11", "Node 4.5"].map((label) => ({ label }));
}

const state = await collectInputs();
window.showInformationMessage(`Creating Application Service '${state.name}'`);
}
Expand Down

0 comments on commit 5e0df56

Please sign in to comment.