Skip to content

Commit 6b3d6c9

Browse files
author
hirsch88
committed
Add missed parameter to the factory interface
1 parent 875a432 commit 6b3d6c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/seeds/FactoryInterface.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export interface FactoryInterface {
99
/**
1010
* Returns an EntityFactoryInterface
1111
*/
12-
get<Entity>(entityClass: ObjectType<Entity>): EntityFactoryInterface<Entity>;
12+
get<Entity>(entityClass: ObjectType<Entity>, args: any[]): EntityFactoryInterface<Entity>;
1313
/**
1414
* Define an entity faker
1515
*/

0 commit comments

Comments
 (0)