* feat(localization): Added Thai translation * Formatted --------- Co-authored-by: Elias Schneider <login@eliasschneider.com>
7 lines
207 B
TypeScript
7 lines
207 B
TypeScript
import { OmitType, PartialType } from "@nestjs/swagger";
|
|
import { UserDTO } from "./user.dto";
|
|
|
|
export class UpdateOwnUserDTO extends PartialType(
|
|
OmitType(UserDTO, ["isAdmin", "password"] as const),
|
|
) {}
|