UNPKG

@sprucelabs/schema

Version:

Static and dynamic binding plus runtime validation and transformation to ensure your app is sound. 🤓

7 lines (6 loc) • 249 B
import { FieldDefinition } from './field.static.types'; export type PhoneFieldDefinition = FieldDefinition<string, string, string[], string[]> & { /** * .Phone a great way to validate and format values */ type: 'phone'; options?: {}; };