UNPKG
@linnify/typeorm-factory
Version:
latest (1.0.12)
1.0.12
1.0.11
1.0.10
1.0.9
1.0.8
1.0.7
1.0.6
1.0.5
Factory for typeorm
github.com/linnify/typeorm-factory
linnify/typeorm-factory
@linnify/typeorm-factory
/
lib
/
types.d.ts
5 lines
(4 loc)
•
216 B
TypeScript
View Raw
1
2
3
4
5
import
{
Factory
}
from
'./factory'
;
export
declare
type
FactoryClass
<T> =
new
() =>
Factory
<T>;
export
declare
type
Constructable
<T> =
new
(...
args
:
any
[]) => T;
export
declare
type
SequenceFn
=
(
i
:
number
) =>
any
;