1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-03-02 03:54:14 +08:00
1Panel/frontend/src/typings/global.d.ts

30 lines
614 B
Go
Raw Normal View History

2022-08-16 23:30:23 +08:00
declare namespace Menu {
interface MenuOptions {
path: string;
title: string;
icon?: string;
isLink?: string;
close?: boolean;
children?: MenuOptions[];
}
}
declare type Recordable<T = any> = Record<string, T>;
declare interface ViteEnv {
VITE_API_URL: string;
VITE_PORT: number;
VITE_OPEN: boolean;
VITE_GLOB_APP_TITLE: string;
VITE_DROP_CONSOLE: boolean;
VITE_PROXY_URL: string;
VITE_BUILD_GZIP: boolean;
VITE_REPORT: boolean;
}
2023-01-11 18:09:01 +08:00
declare interface RouterButton {
label: string;
path?: string;
name?: string;
}