UNPKG

lambdaorm-base

Version:
11 lines (10 loc) 362 B
import { Entity } from '../../domain'; import { Type } from 'typ3s'; import { SchemaHelper } from '../../infrastructure/schemaHelper'; export declare class CreateEntitiesService { private readonly helper; constructor(helper: SchemaHelper); getEntities(name: string, type: Type): Entity[]; private typeToEntities; private objTypeToEntities; }