UNPKG

objectypes

Version:

A type-safe library to transform and validate objects

8 lines (7 loc) 191 B
import { ClassConstructor } from './class-constructor'; export interface PropertyOptions { name?: string; type?: ClassConstructor<any>; nullable?: true; defaultValue?: any; }