- From: Narongrit Pilantasnarat <notifications@github.com>
- Date: Wed, 06 Mar 2019 19:19:12 -0800
- To: whatwg/fetch <fetch@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
- Message-ID: <whatwg/fetch/issues/876@github.com>
https://fetch.spec.whatwg.org/commit-snapshots/265974fd666d365c164d0337faf2dccfe5867ee7/#idl-index > typedef \(sequence<sequence<ByteString>> or record<ByteString, ByteString>\) HeadersInit; > > \[Constructor\(optional HeadersInit init\), > Exposed=\(Window,Worker\)\] > interface Headers \{ > void append\(ByteString name, ByteString value\); > void delete\(ByteString name\); > ByteString? get\(ByteString name\); > boolean has\(ByteString name\); > void set\(ByteString name, ByteString value\); > iterable<ByteString, ByteString>; > \}; > typedef \(Blob or BufferSource or FormData or URLSearchParams or ReadableStream or USVString\) BodyInit; > interface mixin Body \{ > readonly attribute ReadableStream? body; > readonly attribute boolean bodyUsed; > \[NewObject\] Promise<ArrayBuffer> arrayBuffer\(\); > \[NewObject\] Promise<Blob> blob\(\); > \[NewObject\] Promise<FormData> formData\(\); > \[NewObject\] Promise<any> json\(\); > \[NewObject\] Promise<USVString> text\(\); > \}; > typedef \(Request or USVString\) RequestInfo; > > \[Constructor\(RequestInfo input, optional RequestInit init\), > Exposed=\(Window,Worker\)\] > interface Request \{ > readonly attrib\.\.\. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/whatwg/fetch/issues/876
Received on Thursday, 7 March 2019 03:19:33 UTC