policeSecurity/superManagement/src/global.d.ts

11 lines
146 B
TypeScript
Raw Normal View History

2024-08-29 17:06:00 +08:00
declare const __APP_ENV: ImportMetaEnv;
/**
*
*/
interface JsonResult<T> {
code: number;
message: string;
data?: T;
}