UNPKG
@jondotsoy/flags
Version:
latest (3.2.1)
3.2.1
3.2.0
3.1.3
3.1.2
3.1.1
3.0.3
3.0.2
3.0.1
3.0.0
2.5.0
2.4.0
2.3.0
2.2.0
2.1.0
2.0.3
2.0.2
2.0.1
2.0.0
1.1.1
1.1.0
1.0.5
1.0.4
A Javascript arguments processor
github.com/JonDotsoy/flags
JonDotsoy/flags
@jondotsoy/flags
/
lib
/
types
/
BuilderContructor.d.ts
4 lines
(3 loc)
•
241 B
TypeScript
View Raw
1
2
3
4
import
type
{
Accumulate
}
from
"./dtos/Accumulate.js"
;
import
type
{
Refine
}
from
"./dtos/Refine.js"
;
export
type
BuilderContructor
<T> =
new
(
initial
:
any
,
refiners
:
Refine
[],
accumulate
?:
Accumulate
,
metadata
?:
Record
<
string
,
any
>) => T;