8 lines
253 B
TypeScript
8 lines
253 B
TypeScript
import { PartialType } from "@nestjs/mapped-types";
|
|
import { CreateWidgetConfigDto } from "./create-widget-config.dto";
|
|
|
|
/**
|
|
* DTO for updating a widget configuration
|
|
*/
|
|
export class UpdateWidgetConfigDto extends PartialType(CreateWidgetConfigDto) {}
|