README
DTO-Model Parser
DTO-Model Parser is a TypeScript Library that helps performing transformations bidirectionally among objects coming from APIs or backend (JSON/DTOs) and frontend models (TS Classes).
Getting started
Requirements
The package makes use of TypeScript decorators. Please activate them in your tsconfig.json under compilerOptions
as follows:
{
"compilerOptions": {
[...]
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
[...]
}
Mapping example
// TODO