UNPKG

asp-smart-ui-plus-test

Version:

A Component Library for Vue 3

21 lines (20 loc) 399 B
export interface FormField { [x: string]: any; value: any; label: any; defaultCheckedKeys: any; type: string; show?: boolean; columnName: string; defaultValue?: any; attributes?: any; options?: any; disabled?: boolean; methods?: { [key: string]: () => void; }; radioGroups?: any[]; } export interface Model { [key: string]: any; }