@types/terminal-kit
Advanced tools
Comparing version 1.26.1 to 1.28.0
@@ -1,2 +0,2 @@ | ||
// Type definitions for terminal-kit 1.26 | ||
// Type definitions for terminal-kit 1.28 | ||
// Project: https://github.com/cronvel/terminal-kit#readme | ||
@@ -3,0 +3,0 @@ // Definitions by: katsanva <https://github.com/katsanva> |
{ | ||
"name": "@types/terminal-kit", | ||
"version": "1.26.1", | ||
"version": "1.28.0", | ||
"description": "TypeScript definitions for terminal-kit", | ||
@@ -24,4 +24,4 @@ "license": "MIT", | ||
}, | ||
"typesPublisherContentHash": "8f7ddf8862d1a7e423d1ce90da424029a9d3cfd5b46ea415e26b74ed92f6e3d5", | ||
"typesPublisherContentHash": "0a2497405bcbabb33b6474131832de56b902fc82210abf82b3a6183a84a8b51e", | ||
"typeScriptVersion": "2.7" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
Additional Details | ||
* Last updated: Tue, 14 May 2019 20:53:20 GMT | ||
* Last updated: Wed, 15 May 2019 15:53:07 GMT | ||
* Dependencies: @types/nextgen-events | ||
@@ -14,0 +14,0 @@ * Global values: TextBuffer |
@@ -40,9 +40,9 @@ import EventEmitter = require("nextgen-events"); | ||
brightWhite: CTerminal; | ||
color: (register: number) => Terminal; | ||
darkColor: (register: number) => Terminal; | ||
brightColor: (register: number) => Terminal; | ||
color256: (register: number) => Terminal; | ||
colorRgb: (r: number, g: number, b: number) => Terminal; | ||
colorRgbHex: (rgb: string) => Terminal; | ||
colorGrayscale: (I: number) => Terminal; | ||
color: (color: number | string, str?: string) => Terminal; | ||
darkColor: (color: number | string, str?: string) => Terminal; | ||
brightColor: (color: number | string, str?: string) => Terminal; | ||
color256: (color: number | string, str?: string) => Terminal; | ||
colorRgb: (r: number, g: number, b: number, str?: string) => Terminal; | ||
colorRgbHex: (rgb: string, str?: string) => Terminal; | ||
colorGrayscale: (I: number, str?: string) => Terminal; | ||
@@ -68,9 +68,9 @@ bgDefaultColor: CTerminal; | ||
bgBrightWhite: CTerminal; | ||
bgColor: (register: number) => Terminal; | ||
bgDarkColor: (register: number) => Terminal; | ||
bgBrightColor: (register: number) => Terminal; | ||
bgColor256: (register: number) => Terminal; | ||
bgColorRgb: (r: number, g: number, b: number) => Terminal; | ||
bgColorRgbHex: (rgb: string) => Terminal; | ||
bgColorGrayscale: (I: number) => Terminal; | ||
bgColor: (color: number | string, str?: string) => Terminal; | ||
bgDarkColor: (color: number | string, str?: string) => Terminal; | ||
bgBrightColor: (color: number | string, str?: string) => Terminal; | ||
bgColor256: (color: number | string, str?: string) => Terminal; | ||
bgColorRgb: (r: number, g: number, b: number, str?: string) => Terminal; | ||
bgColorRgbHex: (rgb: string, str?: string) => Terminal; | ||
bgColorGrayscale: (I: number, str?: string) => Terminal; | ||
@@ -147,4 +147,4 @@ styleReset: CTerminal; | ||
str: Terminal; | ||
noFormat: (str: string) => Terminal; | ||
markupOnly: (str: string) => Terminal; | ||
noFormat: CTerminal; | ||
markupOnly: CTerminal; | ||
wrap: CTerminal; | ||
@@ -151,0 +151,0 @@ bindArgs: (...args: any[]) => Terminal; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
26210