Skip to content

Instantly share code, notes, and snippets.

@airscholar
Created July 18, 2022 18:52
Show Gist options
  • Save airscholar/641e9b4401936faaf7e78c9525a6e17c to your computer and use it in GitHub Desktop.
Save airscholar/641e9b4401936faaf7e78c9525a6e17c to your computer and use it in GitHub Desktop.
import { PartialType } from '@nestjs/mapped-types';
import { CreateTodoDto } from './create-todo.dto';
export class UpdateTodoDto extends PartialType(CreateTodoDto) {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment