release: update 3.4.5

This commit is contained in:
xiaoxian521
2022-08-22 21:34:55 +08:00
parent 13427998f3
commit c07e60e114
133 changed files with 3481 additions and 3277 deletions

8
types/global.d.ts vendored
View File

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