vscode-kanbn/src/VSCodeApi.ts
2021-04-01 00:26:08 +01:00

6 lines
137 B
TypeScript

export default interface VSCodeApi {
getState: () => any;
setState: (newState: any) => any;
postMessage: (message: any) => void;
}