2023-09-26 20:47:53 -07:00

11 lines
235 B
TypeScript

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