UNPKG
efate
Version:
latest (1.5.1)
1.5.1
1.5.0
1.4.2
1.4.1
1.4.0
1.3.0
1.2.0
1.1.1
1.0.2
1.0.0
1.0.0-alpha.0
0.7.0
0.6.0
0.5.1
0.5.0
0.4.1
0.3.0
0.2.0
javascript test fixture generator. Autofixturejs 2.0
github.com/jcteague/efate
jcteague/efate
efate
/
dist
/
property-builders
/
array-field-builder.d.ts
7 lines
(6 loc)
•
233 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
Field
from
'../field'
;
export
interface
ArrayBuilderOptions
{
length
?:
number
; }
declare
const
asArrayBuilder
:
(
fieldName
:
string
, [options]: [
ArrayBuilderOptions
]
) =>
() =>
Field
<
string
[]>;
export
default
asArrayBuilder;