This commit is contained in:
xuziqiang
2024-05-15 17:29:42 +08:00
commit d0155dbe3c
7296 changed files with 1832517 additions and 0 deletions

26
type/global.d.ts vendored Normal file
View File

@@ -0,0 +1,26 @@
declare const __APP_INFO__: {
pkg: {
name: string;
version: string;
dependencies: Recordable<string>;
devDependencies: Recordable<string>;
};
platform: string;
buildTime: string;
serviceMode: 'saas' | 'paas';
};
declare const __APP_ROUTER__: string;
declare type Nullable<T> = T | null;
declare type Recordable<T = any> = Record<string, T>;
declare interface Props {
[key: string]: any;
}
declare type VueNode = VNodeChild | JSX.Element;
declare type Data = Record<string, unknown>;
declare type Key = string | number;

0
type/router.ts Normal file
View File