UNPKG

@visulima/ansi

Version:

ANSI escape codes for some terminal swag.

21 lines (20 loc) 825 B
/** Escape character (\u001B). */ export declare const ESC: string; /** Control Sequence Introducer (ESC [). */ export declare const CSI: string; /** Operating System Command (ESC ]). */ export declare const OSC: string; /** Bell character (\u0007). Often used to terminate OSC sequences. */ export declare const BEL: string; /** Separator used in some ANSI sequences, typically a semicolon. */ export declare const SEP: string; /** Device Control String (ESC P). */ export declare const DCS: string; /** String Terminator (ESC \\). Used to terminate DCS, SOS, PM, APC sequences. */ export declare const ST: string; /** Application Program Command (ESC _). */ export declare const APC: string; /** Start of String (ESC X). */ export declare const SOS: string; /** Privacy Message (ESC ^). */ export declare const PM: string;