tabby-quick-cmds
Version:
Quick commands manager for Tabby
15 lines (14 loc) • 409 B
TypeScript
import { ElementRef } from '@angular/core';
import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
export declare class PromptModalComponent {
private modalInstance;
value: string;
password: boolean;
input: ElementRef;
private frequencyMap;
constructor(modalInstance: NgbActiveModal);
ngOnInit(): void;
ok(): void;
cancel(): void;
getSortedHistory(): string[];
}