UNPKG

@entity-factory/core

Version:

Create entities on the fly for mocking and testing

6 lines (5 loc) 268 B
import { BlueprintBuilder } from './blueprint/BlueprintBuilder'; import { EntityObjectType } from './common/EntityObjectType'; export interface EntityFactoryExecutor { for<EntityType>(entity: EntityObjectType<EntityType> | string): BlueprintBuilder<EntityType>; }