/
dimamir
/
undb
Обзор
Документация
Войти
/
dimamir
/
undb
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
packages/table/src/services/methods/get-table.method.ts
7 строк
299 B
nichenqin
chore: prettier
14 май 2024, 04:57
14 май 2024, 04:57
5c0eb73
Код
Авторство
О чём код?
import { TableIdVo } from "../../table-id.vo" import type { TableQueryService } from "../table.query-service" export async function getTableMethod(this: TableQueryService, id: string) { const tableId = new TableIdVo(id) return (await this.repo.findOneById(tableId)).expect("not found table") }