Type alias Empty

Empty array, object or string.

Remarks

Union type of EmptyArray, EmptyRecord and EmptyString, to signify values that are empty.

Example

const emptyString: Empty = "";
const emptyArray: Empty = [];
const emptyRecord: Empty = {};

See