/
dimamir
/
undb
Обзор
Документация
Войти
/
dimamir
/
undb
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
packages/commands/src/delete-view.command.ts
18 строк
541 B
nichenqin
feat: delete view
14 июн 2024, 11:58
14 июн 2024, 11:58
21a8167
Код
Авторство
О чём код?
import { Command, type CommandProps } from "@undb/domain" import { deleteViewDTO } from "@undb/table" import { z } from "@undb/zod" export const deleteViewCommand = deleteViewDTO export type IDeleteViewCommand = z.infer<typeof deleteViewCommand> export class DeleteViewCommand extends Command implements IDeleteViewCommand { public readonly tableId: string public readonly viewId?: string constructor(props: CommandProps<IDeleteViewCommand>) { super(props) this.tableId = props.tableId this.viewId = props.viewId } }