0e4a111f81
Resolve #7779
32 lines
545 B
TypeScript
32 lines
545 B
TypeScript
export type FormItem = {
|
|
label?: string;
|
|
type: 'string';
|
|
default: string | null;
|
|
hidden?: boolean;
|
|
multiline?: boolean;
|
|
} | {
|
|
label?: string;
|
|
type: 'number';
|
|
default: number | null;
|
|
hidden?: boolean;
|
|
step?: number;
|
|
} | {
|
|
label?: string;
|
|
type: 'boolean';
|
|
default: boolean | null;
|
|
hidden?: boolean;
|
|
} | {
|
|
label?: string;
|
|
type: 'enum';
|
|
default: string | null;
|
|
hidden?: boolean;
|
|
enum: string[];
|
|
} | {
|
|
label?: string;
|
|
type: 'array';
|
|
default: unknown[] | null;
|
|
hidden?: boolean;
|
|
};
|
|
|
|
export type Form = Record<string, FormItem>;
|