UNPKG

sql-code-generator

Version:

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

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