With auth

This commit is contained in:
2023-09-26 20:47:53 -07:00
parent 9ee21dbe30
commit 5454183d86
27 changed files with 3061 additions and 83 deletions

View File

@ -0,0 +1,10 @@
import * as _vscode from "vscode";
declare global {
const acquiredVsCodeApi: {
postMessage: ({ type: string, value: any }) => void;
getState: () => any;
setState: (state: any) => void;
};
const apiBaseUrl: string;
}