UNPKG

material-form-builder

Version:
10 lines (9 loc) 239 B
import { ObjectLiteral } from './helper.types'; import { InputProps } from './input'; export type OutputValues<T = ObjectLiteral> = { data: T; validation: { status: boolean; inputs: InputProps[]; }; };