pure-orm
Version:
A SQL Toolkit based on pure business objects passed to and from stateful data access objects
20 lines (19 loc) • 565 B
TypeScript
import { IModel, ICollection, IColumns } from '../../../src/index';
export declare const tableName: string;
export declare const columns: IColumns;
export declare class Size implements IModel {
id: number;
value: string;
label: string;
constructor(props: any);
}
export declare class Sizes implements ICollection<Size> {
models: Array<Size>;
constructor({ models }: any);
}
export declare const sizeEntity: {
tableName: string;
columns: import("../../../src/core").IColumn[];
Model: typeof Size;
Collection: typeof Sizes;
};