UNPKG

@travetto/model-sql

Version:

SQL backing for the travetto model module, with real-time modeling support for SQL schemas.

12 lines (9 loc) 237 B
import { Class } from '@travetto/runtime'; export const TableSymbol = Symbol.for('@travetto/model-sql:table'); export type VisitStack = { [TableSymbol]?: string; array?: boolean; type: Class; name: string; index?: number; };