UNPKG

database-builder

Version:

Library to assist in creating and maintaining SQL commands.

6 lines (5 loc) 287 B
import { MetadataTable } from "../metadata-table"; export interface GetMapper { get<T>(tKey: (new () => T) | string): MetadataTable<T>; forEachMapper(callbackfn: (value: MetadataTable<any>, key: string, map: Map<string, MetadataTable<any>>) => void, thisArg?: any): void; }