UNPKG

pure-orm

Version:

A SQL Toolkit based on pure business objects passed to and from stateful data access objects

21 lines (20 loc) 623 B
import { IModel, ICollection, IColumns } from '../../../src/index'; export declare const tableName: string; export declare const columns: IColumns; export declare class UtmSource implements IModel { id: number; value: string; label: string; internal: boolean; constructor(props: any); } export declare class UtmSources implements ICollection<UtmSource> { models: Array<UtmSource>; constructor({ models }: any); } export declare const utmSourceEntity: { tableName: string; columns: import("../../../src/core").IColumn[]; Model: typeof UtmSource; Collection: typeof UtmSources; };