@uiowa/uiowa-account
Version:
Angular library to manage MFK and UNI Account output
23 lines (22 loc) • 470 B
TypeScript
export declare class ElementInputBase<T> {
value: T;
key: string;
label: string;
required: boolean;
order: number;
controlType: string;
id: string;
size: number;
display: string;
constructor(options?: {
value?: T;
key?: string;
label?: string;
required?: boolean;
order?: number;
controlType?: string;
id?: string;
size?: number;
display?: string;
});
}