@bitloops/bl-transpiler
Version:
The one and only Bitloops Language transpiler
9 lines • 346 B
JavaScript
export const DTO_END_TO_END_TEST_CASES = [
{
description: 'Simple DTO with optional array field',
input: 'DTO HelloWorldRequestDTO{ optional string[][] name; }',
className: 'HelloWorldRequestDTO',
output: 'export interface HelloWorldRequestDTO { name?: string[][]; }',
},
];
//# sourceMappingURL=dto.js.map