@cowwoc/requirements
Version:
A fluent API for enforcing design contracts with automatic message generation.
16 lines (15 loc) • 555 B
text/typescript
import { AbstractColorWriter } from "../../internal.mjs";
/**
* A node terminal that supports 16 million colors.
*
* @see <a href="https://gist.github.com/XVilka/8346728">https://gist.github.com/XVilka/8346728</a>
*/
declare class Node16MillionColors extends AbstractColorWriter {
constructor();
protected afterFlush(): void;
decorateInsertedText(text: string): string;
decorateDeletedText(text: string): string;
decorateEqualText(text: string): string;
decoratePadding(text: string): string;
}
export { Node16MillionColors };