You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
472 B
23 lines
472 B
import type { RouteMeta as IRouteMeta } from '@vben-core/typings';
|
|
|
|
import 'vue-router';
|
|
|
|
declare module 'vue-router' {
|
|
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
|
|
interface RouteMeta extends IRouteMeta {}
|
|
}
|
|
|
|
export interface VbenAdminProAppConfigRaw {
|
|
VITE_GLOB_API_URL: string;
|
|
}
|
|
|
|
export interface ApplicationConfig {
|
|
apiURL: string;
|
|
}
|
|
|
|
declare global {
|
|
interface Window {
|
|
_VBEN_ADMIN_PRO_APP_CONF_: VbenAdminProAppConfigRaw;
|
|
}
|
|
}
|