chore: remove unnecessary files and deps

This commit is contained in:
Junyan Qin
2025-05-09 22:53:57 +08:00
parent df700ec7c2
commit 4031ff2835
5 changed files with 16 additions and 1773 deletions
@@ -1,46 +0,0 @@
export interface GetMetaDataResponse {
configs: Config[];
}
interface Label {
en_US: string;
zh_CN: string;
}
interface Option {
label: Label;
name: string;
}
interface ConfigItem {
default?: boolean | Array<unknown> | number | string;
description?: Label;
items?: {
type?: string;
properties?: {
[key: string]: {
type: string;
default?: object | string;
};
};
};
label: Label;
name: string;
options?: Option[];
required: boolean;
scope?: string;
type: string;
}
interface Stage {
config: ConfigItem[];
description?: Label;
label: Label;
name: string;
}
interface Config {
label: Label;
name: string;
stages: Stage[];
}
-4
View File
@@ -1,4 +0,0 @@
export interface I18NText {
en_US: string;
zh_CN: string;
}