Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@types/terminal-kit

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/terminal-kit - npm Package Compare versions

Comparing version 2.5.4 to 2.5.5

2

terminal-kit/index.d.ts

@@ -24,3 +24,3 @@ import Rect = require("./Rect");

export function autoComplete(
array: ReadonlyArray<string>,
array: readonly string[],
startString: string,

@@ -27,0 +27,0 @@ returnAlternatives?: boolean,

{
"name": "@types/terminal-kit",
"version": "2.5.4",
"version": "2.5.5",
"description": "TypeScript definitions for terminal-kit",

@@ -30,4 +30,4 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/terminal-kit",

},
"typesPublisherContentHash": "42b8980285dfdf0835e8978de7bfc54460dfa8297fa13274fc294af1316b5cc6",
"typesPublisherContentHash": "b5d0e68e39dc3cb07da3f736ab4f0b8b81ffa9dea25033944b5b3514793c8a80",
"typeScriptVersion": "4.9"
}

@@ -11,3 +11,3 @@ # Installation

### Additional Details
* Last updated: Tue, 07 Nov 2023 15:11:36 GMT
* Last updated: Mon, 20 Nov 2023 23:36:24 GMT
* Dependencies: [@types/nextgen-events](https://npmjs.com/package/@types/nextgen-events)

@@ -14,0 +14,0 @@

@@ -187,3 +187,3 @@ import EventEmitter = require("nextgen-events");

b: number,
names?: ReadonlyArray<string>,
names?: readonly string[],
): void;

@@ -193,3 +193,3 @@ setColor(

rgb: { r: number; g: number; b: number },
names?: ReadonlyArray<string>,
names?: readonly string[],
): void;

@@ -199,3 +199,3 @@ getPalette(register: number, callback?: Callback<Palette>): void;

table(tableCells: ReadonlyArray<ReadonlyArray<string>>, options?: TextTableOptions): void;
table(tableCells: ReadonlyArray<readonly string[]>, options?: TextTableOptions): void;

@@ -235,3 +235,3 @@ spinner(options?: AnimatedTextOptions): Promise<AnimatedText>;

singleLineMenu(
menuItems: ReadonlyArray<string>,
menuItems: readonly string[],
options: SingleLineMenuOptions,

@@ -242,3 +242,3 @@ callback: Callback<SingleLineMenuResponse>,

singleLineMenu(
menuItems: ReadonlyArray<string>,
menuItems: readonly string[],
callback: Callback<SingleLineMenuResponse>,

@@ -248,3 +248,3 @@ ): void;

singleLineMenu(
menuItems: ReadonlyArray<string>,
menuItems: readonly string[],
options?: SingleLineMenuOptions,

@@ -256,3 +256,3 @@ ): {

singleRowMenu(
menuItems: ReadonlyArray<string>,
menuItems: readonly string[],
options: SingleLineMenuOptions,

@@ -263,3 +263,3 @@ callback: Callback<SingleLineMenuResponse>,

singleRowMenu(
menuItems: ReadonlyArray<string>,
menuItems: readonly string[],
callback: Callback<SingleLineMenuResponse>,

@@ -269,3 +269,3 @@ ): void;

singleRowMenu(
menuItems: ReadonlyArray<string>,
menuItems: readonly string[],
options?: SingleLineMenuOptions,

@@ -277,3 +277,3 @@ ): {

singleColumnMenu(
menuItems: ReadonlyArray<string>,
menuItems: readonly string[],
options: SingleColumnMenuOptions,

@@ -284,3 +284,3 @@ callback: Callback<SingleColumnMenuResponse>,

singleColumnMenu(
menuItems: ReadonlyArray<string>,
menuItems: readonly string[],
callback: Callback<SingleColumnMenuResponse>,

@@ -290,3 +290,3 @@ ): void;

singleColumnMenu(
menuItems: ReadonlyArray<string>,
menuItems: readonly string[],
options?: SingleColumnMenuOptions,

@@ -298,3 +298,3 @@ ): {

gridMenu(
menuItems: ReadonlyArray<string>,
menuItems: readonly string[],
options: GridMenuOptions,

@@ -305,3 +305,3 @@ callback: Callback<GridMenuResponse>,

gridMenu(
menuItems: ReadonlyArray<string>,
menuItems: readonly string[],
callback: Callback<GridMenuResponse>,

@@ -311,3 +311,3 @@ ): void;

gridMenu(
menuItems: ReadonlyArray<string>,
menuItems: readonly string[],
options?: GridMenuOptions,

@@ -384,8 +384,8 @@ ): {

b: number;
names: ReadonlyArray<string>;
names: readonly string[];
}>;
interface YesOrNoOptions {
yes: string | ReadonlyArray<string>;
no: string | ReadonlyArray<string>;
yes: string | readonly string[];
no: string | readonly string[];
echoYes?: string | undefined;

@@ -449,3 +449,3 @@ echoNo?: string | undefined;

isEndOfInput: boolean,
previousTokens: ReadonlyArray<string>,
previousTokens: readonly string[],
term: Terminal,

@@ -575,3 +575,3 @@ config: HookConfig,

width?: number;
cellContents?: ReadonlyArray<ReadonlyArray<string>>;
cellContents?: ReadonlyArray<readonly string[]>;
contentHasMarkup?: boolean | string;

@@ -578,0 +578,0 @@ textAttr?: object;

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc