mirror of
https://github.com/swissmakers/swiss-datashare.git
synced 2026-04-17 12:43:13 +02:00
5 lines
164 B
TypeScript
5 lines
164 B
TypeScript
import { PickType } from "@nestjs/mapped-types";
|
|
import { UserDTO } from "./user.dto";
|
|
|
|
export class PublicUserDTO extends PickType(UserDTO, ["email"] as const) {}
|