UNPKG

sql-code-generator

Version:

Generate code from your SQL schema and queries for type safety and development speed.

10 lines (9 loc) 308 B
import { DomainObject } from 'domain-objects'; import Joi from 'joi'; export interface SqlSubqueryReference { id: string; sql: string; } export declare class SqlSubqueryReference extends DomainObject<SqlSubqueryReference> implements SqlSubqueryReference { static schema: Joi.ObjectSchema<any>; }