/
dimamir
/
undb
Обзор
Документация
Войти
/
dimamir
/
undb
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
packages/commands/src/set-field-width.command.ts
22 строки
654 B
nichenqin
--wip-- [skip ci]
13 сен 2024, 15:33
13 сен 2024, 15:33
075bc69
Код
Авторство
О чём код?
import { Command, type CommandProps } from "@undb/domain" import { setFieldWidthDTO } from "@undb/table" import { z } from "@undb/zod" export const setFieldWidthCommand = setFieldWidthDTO export type ISetFieldWidthCommand = z.infer<typeof setFieldWidthCommand> export class SetFieldWidthCommand extends Command { public readonly tableId: string public readonly viewId?: string public readonly field: string public readonly width: number constructor(props: CommandProps<ISetFieldWidthCommand>) { super(props) this.tableId = props.tableId this.viewId = props.viewId this.field = props.field this.width = props.width } }