bookish-potato-dto
Version:
## Overview A TypeScript decorators-based API for defining Data Transfer Object (DTO) classes, types, and parsers. Simplifies schema validation and type enforcement using intuitive decorators and TypeScript classes.
15 lines (14 loc) • 798 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.dto';
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';