UNPKG

to-typed

Version:

Type-guards, casts and converts unknowns into typed values

10 lines (9 loc) 301 B
export interface CastSettings { readonly keyGuarding: 'loose' | 'strict'; readonly booleanNames: { readonly true: string[]; readonly false: string[]; }; readonly unwrapArray: 'never' | 'single' | 'first' | 'last'; readonly wrapArray: 'never' | 'single'; }