UNPKG

pure-orm

Version:

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

28 lines (27 loc) 824 B
import { IModel, ICollection, IColumns } from '../../../src/index'; export declare const tableName: string; export declare const columns: IColumns; export declare class PhysicalAddress implements IModel { id: number; address1: string; address2: string; city: string; province: string; zip: string; country: string; provinceCode: string; countryCode: string; latitude: string; longitude: string; constructor(props: any); } export declare class PhysicalAddresses implements ICollection<PhysicalAddress> { models: Array<PhysicalAddress>; constructor({ models }: any); } export declare const physicalAddressEntity: { tableName: string; columns: import("../../../src/core").IColumn[]; Model: typeof PhysicalAddress; Collection: typeof PhysicalAddresses; };