/
dimamir
/
undb
Обзор
Документация
Войти
/
dimamir
/
undb
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
packages/commands/src/set-view-fields.command.ts
20 строк
652 B
nichenqin
feat: set view fields option
05 июн 2024, 11:33
05 июн 2024, 11:33
a37037a
Код
Авторство
О чём код?
import { Command, type CommandProps } from "@undb/domain" import { setViewFieldsDTO, type IViewFields } from "@undb/table" import { z } from "@undb/zod" export const setViewFieldsCommand = setViewFieldsDTO export type ISetViewFieldsCommand = z.infer<typeof setViewFieldsCommand> export class SetViewFieldsCommand extends Command implements ISetViewFieldsCommand { public readonly tableId: string public readonly viewId?: string public readonly fields: IViewFields constructor(props: CommandProps<ISetViewFieldsCommand>) { super(props) this.tableId = props.tableId this.viewId = props.viewId this.fields = props.fields } }