Refactor/themes (#311)

* refactor: theme
This commit is contained in:
RealityBoy
2022-07-26 13:16:44 +08:00
committed by GitHub
parent 708ce43e00
commit d824c99489
62 changed files with 1100 additions and 1066 deletions

6
types/global.d.ts vendored
View File

@@ -5,6 +5,7 @@ import type {
FunctionalComponent,
PropType as VuePropType
} from "vue";
import type { ECharts } from "echarts";
// GlobalComponents for Volar
declare module "vue" {
@@ -108,6 +109,11 @@ declare global {
};
}
declare interface GlobalPropertiesApi {
$echarts: ECharts;
$storage: ServerConfigs;
}
function parseInt(s: string | number, radix?: number): number;
function parseFloat(string: string | number): number;