chore: init frontend with knowledge module

This commit is contained in:
2026-07-02 18:20:38 +08:00
parent fe67114be2
commit ad2e91ef30
649 changed files with 86676 additions and 1 deletions
+48
View File
@@ -0,0 +1,48 @@
declare module "virtual:ctx" {
const ctx: {
serviceLang: string;
modules: string[];
};
export { ctx };
}
declare module "virtual:eps" {
const eps: {
isUpdate: boolean;
list: {
prefix: string;
api: {
method: string;
path: string;
summary: string;
dts: {
[key: string]: string;
};
[key: string]: any;
}[];
namespace: string;
name: string;
module: string;
columns: {
comment: string;
nullable: boolean;
propertyName: string;
type: string;
[key: string]: any;
}[];
[key: string]: any;
}[];
service: any;
};
export { eps };
}
declare module "virtual:demo";
declare module "virtual:svg-register";
declare module "virtual:svg-icons" {
const svgIcons: string[];
export { svgIcons };
}