Appearance
Determines the type of a character: "Regular", "Separator", "Whitespace", or "None".
"Regular"
"Separator"
"Whitespace"
"None"
import { Char } from "@monstermann/signals-tui"; Char.type("a"); // "Regular" Char.type(" "); // "Whitespace" Char.type(","); // "Separator" Char.type(undefined); // "None"