Values that can be stringified (all primitives excluding symbol). Should be used with string types.
let value: Stringable = "hello";value = 1;value = true;value = Symbol("hello"); // Error!value = { toString: () => "hello" }; // Error!
Values that can be stringified (all primitives excluding symbol). Should be used with string types.
Example