7 lines
205 B
TypeScript
7 lines
205 B
TypeScript
import { PartialType, PickType } from "@nestjs/swagger";
|
|
import { UserDTO } from "./user.dto";
|
|
|
|
export class UpdateOwnUserDTO extends PartialType(
|
|
PickType(UserDTO, ["username", "email"] as const),
|
|
) {}
|