mirror of
https://github.com/jwetzell/showbridge-webui.git
synced 2026-08-10 17:03:39 +00:00
29 lines
461 B
TypeScript
29 lines
461 B
TypeScript
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;
|
|
};
|