UNPKG

@payfit/unity-components

Version:

9 lines (8 loc) 225 B
export interface StandardSchemaField { isOptional: boolean; type: string; shape?: Record<string, StandardSchemaField>; } export interface StandardSchema { getField(path: string): StandardSchemaField | null; }