feat: basic symbol enum

This commit is contained in:
Spencer Gouw 2023-09-21 21:42:41 -05:00
parent 86ba8bfade
commit 18e4c2e28f

7
symbol.ts Normal file
View file

@ -0,0 +1,7 @@
export const enum Symbol {
// on parse
Newline = "\\nl\\",
Tab = "\\tab\\",
// on replace
CursorEnd = "\\end\\",
}