Webview: improve linting & typechecks

This commit is contained in:
Johannes Kirschbauer
2024-05-26 18:37:29 +02:00
parent b0d5ef01ca
commit 4c4c94c508
11 changed files with 1785 additions and 68 deletions

View File

@@ -74,7 +74,7 @@ const deserialize =
const pyApi: PyApi = {} as PyApi;
operationNames.forEach((opName) => {
const name = opName as OperationNames;
// @ts-ignore: TODO make typescript happy
// @ts-expect-error - TODO: Fix this. Typescript is not recognizing the receive function correctly
pyApi[name] = createFunctions(name);
});