UNPKG
formzilla
Version:
latest (3.5.3)
3.5.3
3.5.2
3.5.1
3.5.0
3.4.2
3.4.1
3.4.0
3.3.1
3.3.0
3.2.18
3.2.17
3.2.16
3.2.15
3.2.14
3.2.13
3.2.12
3.2.11
3.2.10
3.2.9
3.2.8
3.2.7
3.2.5
3.2.4
3.2.3
3.2.2
3.2.1
3.2.0
3.1.2
3.1.1
3.1.0
3.0.9
3.0.8
3.0.7
3.0.6
3.0.5
3.0.4
3.0.3
3.0.2
3.0.1
3.0.0
2.4.7
2.4.6
2.4.5
2.4.4
2.4.3
2.4.2
2.4.1
2.4.0
2.3.1
2.3.0
2.2.1
2.2.0
2.1.2
2.1.1
2.1.0
2.0.2
2.0.1
2.0.0
1.2.2
1.2.0
1.1.8
1.1.7
1.1.6
1.1.5
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Fastify plugin for parsing multipart/form data
github.com/FlameWolf/formzilla
formzilla
/
FieldParserWithSchema.d.ts
7 lines
(6 loc)
•
226 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
Dictionary
,
FieldParser
}
from
"./index"
;
export
declare
class
FieldParserWithSchema
implements
FieldParser
{
private
props
:
Dictionary
;
constructor
(
props
:
Dictionary
);
parseField
(
name
:
string
,
value
:
any
):
any
; }