TERMINAL.WRITE: <T...>(T...) -> ()

This commit is contained in:
rhpidfyre 2025-01-05 22:24:33 -05:00
parent e59cefa041
commit a596386d7b

View File

@ -103,10 +103,11 @@ type foreground_styles = {
DARK_BLUE: (string) -> string, DARK_BLUE: (string) -> string,
} }
type TERMINAL = { type TERMINAL = {
WRITE: <T...>(T...) -> (),
OUT: { OUT: {
BACKGROUND: background_styles, BACKGROUND: background_styles,
FOREGROUND: foreground_styles FOREGROUND: foreground_styles
} },
} }
-------------------------------------------------------------------------------------------------------------------------------- --------------------------------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------------------- --------------------------------------------------------------------------------------------------------------------------------