Files
NativeScript/fetch/webidl.d.ts
2015-07-16 16:52:00 +03:00

11 lines
344 B
TypeScript

// http://heycam.github.io/webidl/#idl-ByteString
declare type ByteString = string;
// http://heycam.github.io/webidl/#idl-USVString
declare type USVString = string;
// http://heycam.github.io/webidl/#idl-DOMString
declare type DOMString = string;
// see: https://fetch.spec.whatwg.org/#headersinit
declare type OpenEndedDictionary = Object;