UNPKG

386 BTypeScriptView Raw
1import '../../';
2
3declare module '../../' {
4 /**
5 * Mode combinator that can be used to extend a mode with an 'overlay' — a secondary mode is run over the stream,
6 * along with the base mode, and can color specific pieces of text without interfering with the base mode.
7 */
8 function overlayMode(base: Mode<any>, overlay: Mode<any>, combine?: boolean): Mode<any>;
9}