/
dimamir
/
undb
Обзор
Документация
Войти
/
dimamir
/
undb
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
packages/commands/src/create-table-form.command.ts
23 строки
686 B
nichenqin
feat: navigate to new form after create form
19 сен 2024, 06:18
19 сен 2024, 06:18
66b0528
Код
Авторство
О чём код?
import { Command, type CommandProps } from "@undb/domain" import { createTableFormDTO, formId, tableId, type ICreateTableFormDTO } from "@undb/table" import { z } from "@undb/zod" export const createTableFormCommand = createTableFormDTO export type ICreateFormCommand = z.infer<typeof createTableFormCommand> export const createTableFormCommandOutput = z.object({ tableId, formId, }) export type ICreateTableFormCommandOutput = z.infer<typeof createTableFormCommandOutput> export class CreateTableFormCommand extends Command { public readonly input: ICreateTableFormDTO constructor(props: CommandProps<ICreateTableFormDTO>) { super(props) this.input = props } }