/**
* A Flux Standard Action.
* @typedef {Action} Action
* @see {@link https://github.com/redux-utilities/flux-standard-action#actions|Action} in Flux Standard Action's documentation.
*/
/**
* The built-in arguments object.
* @typedef {arguments} arguments
* @see {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/arguments|arguments} in Mozilla documentation.
*/
/**
* The built-in Array object.
* @typedef {Array} Array
* @global
* @see {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array|Array} in Mozilla documentation.
*/
/**
* Any array-like object.
* @typedef {Array|String|arguments|?} ArrayLike
* @global
*/
/**
* The built-in Boolean object.
* @typedef {Boolean} Boolean
* @global
* @see {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean|Boolean} in Mozilla documentation.
*/
/**
* The built-in Date object.
* @typedef {Date} Date
* @global
* @see {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date|Date} in Mozilla documentation.
*/
/**
* The built-in Function object.
* @typedef {Function} function
* @global
* @see {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function|Function} and
* {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions|Functions} in Mozilla documentation.
*/
/**
* The Generator object returned by a {@link GeneratorFunction}.
* @typedef {Generator} Generator
* @see {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Generator|Generator} in Mozilla documentation.
*/
/**
* The built-in Generator Function object.
* @typedef {GeneratorFunction} GeneratorFunction
* @global
* @see {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/GeneratorFunction|GeneratorFunction} in Mozilla documentation.
*/
/**
* The built-in Number object.
* @typedef {Number} Number
* @global
* @see {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number|Number} in Mozilla documentation.
*/
/**
* The built-in Object object.
* @typedef {Object} Object
* @global
* @see {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object|Object} in Mozilla documentation.
*/
/**
* The built-in Promise object.
* @typedef {Promise} Promise
* @global
* @see {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise|Promise} in Mozilla documentation.
*/
/**
* The built-in RegExp object.
* @typedef {RegExp} RegExp
* @global
* @see {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp|RegExp} in Mozilla documentation.
*/
/**
* The built-in String object.
* @typedef {String} String
* @global
* @see {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String|String} in Mozilla documentation.
*/
/**
* The built-in primitive value <code>undefined</code>
* @typedef {Undefined} Undefined
* @global
* @see {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/undefined|undefined} in Mozilla documentation.
*/