@bitloops/bl-transpiler
Version:
The one and only Bitloops Language transpiler
12 lines • 462 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DTO_END_TO_END_TEST_CASES = void 0;
exports.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