UNPKG

xterm

Version:

Full xterm terminal, in your browser

17 lines (15 loc) 256 B
/** * Copyright (c) 2017 The xterm.js authors. All rights reserved. * @license MIT */ /** * Flags used to render terminal text properly. */ export enum FLAGS { BOLD = 1, UNDERLINE = 2, BLINK = 4, INVERSE = 8, INVISIBLE = 16, DIM = 32 };