6 lines
224 B
TypeScript
6 lines
224 B
TypeScript
import { OmitType, PartialType } from "@nestjs/swagger";
|
|
import { ExpenseDto } from "./expense.dto";
|
|
|
|
export class updateExpenseDto extends PartialType (
|
|
OmitType(ExpenseDto, ['is_approved', 'timesheet_id'] as const)
|
|
){} |