34 lines
774 B
TypeScript
34 lines
774 B
TypeScript
/// <reference types="vite/client" />
|
|
declare interface ImportMetaEnv {
|
|
readonly VITE_APP_BASE_API: string;
|
|
readonly VITE_APP_TITLE: string;
|
|
readonly VITE_API_BASE_URL: string;
|
|
readonly VITE_NODE_ENV: string;
|
|
readonly VITE_TITLE_NAME: string;
|
|
readonly VITE_APP_TOKEN_KEY?: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|
|
|
|
declare module '*.vue' {
|
|
import type {DefineComponent} from 'vue';
|
|
const component: DefineComponent<object, object, any>;
|
|
export default component;
|
|
}
|
|
|
|
declare module '*.svg' {
|
|
const content: any;
|
|
export default content;
|
|
}
|
|
|
|
declare module '*.svg'
|
|
declare module '*.png'
|
|
declare module '*.jpg'
|
|
declare module '*.jpeg'
|
|
declare module '*.gif'
|
|
declare module '*.bmp'
|
|
declare module '*.tiff'
|
|
|