Defined in node_modules/typescript/lib/lib.dom.d.ts:5391
Defined in node_modules/typescript/lib/lib.dom.d.ts:5401
Methods
append
append( name: string , value: string | Blob , fileName?: string ) : void
Parameters
name: string
value: string | Blob
Optional
fileName: string
Returns void
Defined in node_modules/typescript/lib/lib.dom.d.ts:5392
delete
delete( name: string ) : void
Returns void
Defined in node_modules/typescript/lib/lib.dom.d.ts:5393
for Each
for Each( callbackfn: ( ( value: FormDataEntryValue , key: string , parent: <internal> . FormData ) => void ) , thisArg?: any ) : void
Returns void
Defined in node_modules/typescript/lib/lib.dom.d.ts:5398
get
get( name: string ) : null | FormDataEntryValue
Defined in node_modules/typescript/lib/lib.dom.d.ts:5394
get All
get All( name: string ) : FormDataEntryValue []
Defined in node_modules/typescript/lib/lib.dom.d.ts:5395
has
has( name: string ) : boolean
Returns boolean
Defined in node_modules/typescript/lib/lib.dom.d.ts:5396
set
set( name: string , value: string | Blob , fileName?: string ) : void
Parameters
name: string
value: string | Blob
Optional
fileName: string
Returns void
Defined in node_modules/typescript/lib/lib.dom.d.ts:5397
Provides a way to easily construct a set of key/value pairs representing form fields and their values, which can then be easily sent using the XMLHttpRequest.send() method. It uses the same format a form would use if the encoding type were set to "multipart/form-data".