/
dimamir
/
undb
Обзор
Документация
Войти
/
dimamir
/
undb
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
packages/commands/src/delete-view-widget.command.ts
22 строки
681 B
nichenqin
feat: delete widget
11 окт 2024, 13:29
11 окт 2024, 13:29
13e7d13
Код
Авторство
О чём код?
import { Command, type CommandProps } from "@undb/domain" import { deleteViewWidgetDTO, tableId } from "@undb/table" import { z } from "@undb/zod" export const deleteViewWidgetCommand = deleteViewWidgetDTO.extend({ tableId: tableId, }) export type IDeleteViewWidgetCommand = z.infer<typeof deleteViewWidgetCommand> export class DeleteViewWidgetCommand extends Command implements IDeleteViewWidgetCommand { public readonly id: string public readonly viewId: string public readonly tableId: string constructor(props: CommandProps<IDeleteViewWidgetCommand>) { super(props) this.id = props.id this.viewId = props.viewId this.tableId = props.tableId } }