Type alias EmptyString

EmptyString: ""

Empty string.

Remarks

This type is a string with no characters on it (length 0). Trying to access characters should return undefined, and several of its methods return another EmptyString.

Example

const emptyString: EmptyString = "";