@ovine/core
Version:
Build flexible admin system with json.
57 lines (56 loc) • 1.36 kB
TypeScript
/**
* 项目内常量,禁止重新赋值修改
*/
export declare const rootRoute = "/";
export declare const publicUrl: string;
export declare const parentKey = "parent";
export declare const routeLimitKey = "$page";
export declare const appRootId = "app-root";
export declare const defaultEnvMode = "localhost";
export declare const coreStatic: string;
export declare const strDelimiter = "@##@";
export declare const defLoadPageSchema: {
schema: {
type: string;
body: string;
};
};
export declare const appKey: string | undefined;
export declare const breakpoints: {
xs: number;
sm: number;
md: number;
lg: number;
xl: number;
};
export declare const message: {
storeRoot: string;
layoutSpinner: string;
appTheme: string;
appLocale: string;
clearRouteTabs: string;
routeTabChange: string;
asideLayoutCtrl: {
msg: string;
reload: string;
toggleScreen: string;
toggleFold: string;
};
};
export declare const storage: {
appInstance: string;
userInfo: string;
appTheme: string;
appLocale: string;
appLimit: string;
routeTabs: string;
routeQuery: string;
supportRouteTabs: string;
enableRouteTabs: string;
routeData: string;
dev: {
code: string;
limit: string;
api: string;
};
};