rm some anys

This commit is contained in:
Olivier Gagnon
2022-07-19 21:38:50 -04:00
parent dfadfe6eb2
commit 96654d4c0a
2 changed files with 33 additions and 21 deletions
-6
View File
@@ -2,17 +2,14 @@ import * as monaco from "monaco-editor";
import type { Monaco } from "@monaco-editor/react";
export interface IScriptEditorTheme {
[key: string]: any;
base: "vs" | "vs-dark" | "hc-black";
inherit: boolean;
common: {
[key: string]: string;
accent: string;
bg: string;
fg: string;
};
syntax: {
[key: string]: string;
tag: string;
entity: string;
string: string;
@@ -24,16 +21,13 @@ export interface IScriptEditorTheme {
error: string;
};
ui: {
[key: string]: any;
line: string;
panel: {
[key: string]: string;
bg: string;
selected: string;
border: string;
};
selection: {
[key: string]: string;
bg: string;
};
};