Spaces:
Runtime error
Runtime error
File size: 226 Bytes
97dab2a | 1 2 3 4 5 | import { OmitType } from '@nestjs/mapped-types';
import { CustomerDto } from './customer.dto';
// Omit CustomerID if it's auto-generated
export class CreateCustomerDto extends OmitType(CustomerDto, ['CustomerID'] as const) {} |