bookish-potato-dto
Version:
A TypeScript DTO (Data Transfer Object) parsing and validation library. Define a schema once — get runtime validation and a fully inferred TypeScript type for free.
14 lines (13 loc) • 759 B
TypeScript
export * from './property-parser.floating';
export * from './property-parser.integer';
export * from './property-parser.string';
export * from './property-parser.string-to-number.decorator';
export * from './property-parser.boolean';
export * from './property-parser.string-to-boolean.decorator';
export * from './property-parser.array';
export * from './property-parser.enum';
export * from './property-parser.string-regex.decorator';
export * from './property-parser.date';
export { PropertyParserNumberRangeDecorator } from './property-parser.number-range.decorator';
export { PropertyParserStringRangeDecorator } from './property-parser-string-range.decorator';
export { PropertyParserArrayRangeDecorator } from './property-parser.array-range.decorator';