7 lines
211 B
TypeScript
7 lines
211 B
TypeScript
import { OmitType, PartialType } from "@nestjs/mapped-types";
|
|
import { UserDTO } from "./user.dto";
|
|
|
|
export class UpdateOwnUserDTO extends PartialType(
|
|
OmitType(UserDTO, ["isAdmin", "password"] as const)
|
|
) {}
|