mirror of
https://github.com/jwetzell/showbridge-webui.git
synced 2026-08-20 21:48:59 +00:00
relayout folders
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
import { FormGroup } from '@angular/forms';
|
||||
|
||||
export type ObjectInfo = {
|
||||
name: string;
|
||||
type: string;
|
||||
schema: any;
|
||||
};
|
||||
|
||||
export type ParamsFormInfo = {
|
||||
formGroup: FormGroup;
|
||||
paramsInfo: ParamsInfo;
|
||||
};
|
||||
|
||||
export type ParamsInfo = {
|
||||
[key: string]: ParamInfo;
|
||||
};
|
||||
|
||||
export type ParamInfo = {
|
||||
key: string;
|
||||
display: string;
|
||||
hint: string;
|
||||
type: string;
|
||||
placeholder?: string;
|
||||
options?: string[];
|
||||
isConst: boolean;
|
||||
schema: any;
|
||||
default?: any;
|
||||
};
|
||||
Reference in New Issue
Block a user