mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-17 21:01:34 +08:00
11 lines
344 B
TypeScript
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; |