FormData
Types
formDataEntryValue
type formDataEntryValue = WebAPI.FormDataEntryValue.tValues
append
let append: (t, ~name: string, ~value: string) => unitappendBlob
let appendBlob: ( t, ~name: string, ~blobValue: WebAPI.Blob.t, ~filename: string=?,) => unitentries
let entries: t => iterable<(string, formDataEntryValue)>get
let get: (t, string) => Null.t<formDataEntryValue>getAll
let getAll: (t, string) => array<formDataEntryValue>make
let make: (~form: 'form=?, ~submitter: 'submitter=?) => tset
let set: (t, ~name: string, ~value: string) => unitsetBlob
let setBlob: ( t, ~name: string, ~blobValue: WebAPI.Blob.t, ~filename: string=?,) => unit