16 lines
476 B
TypeScript
16 lines
476 B
TypeScript
/// <reference types="vite/client" />
|
|
/// <reference types="@types/auth" />
|
|
|
|
declare type decimal = number;
|
|
declare type int = number;
|
|
declare type AllType = string | number | object | undefined | null;
|
|
|
|
interface ImportMetaEnv {
|
|
// 系统部署运行地址(主要用于支付二维码生成)
|
|
readonly VITE_APP_SITE_URL: string
|
|
}
|
|
|
|
declare type BasicComponentProps = {
|
|
children?: React.ReactNode;
|
|
}
|
|
declare type BasicComponent<T> = React.FC<BasicComponentProps & T> |