a003b522f2
Fixes TS2339: Property 'id' does not exist on type 'Tab'.
66 lines
1.9 KiB
TypeScript
66 lines
1.9 KiB
TypeScript
import {EventEmitter} from 'events';
|
|
import {WebviewTag} from 'electron';
|
|
|
|
declare class ElectronTabs extends EventEmitter {
|
|
constructor(options?: ElectronTabs.TabGroupOptions);
|
|
addTab(options?: ElectronTabs.TabOptions): ElectronTabs.Tab;
|
|
getTab(id: string): ElectronTabs.Tab | null;
|
|
getTabByPosition(position: number): ElectronTabs.Tab | null;
|
|
getTabByRelPosition(position: number): ElectronTabs.Tab | null;
|
|
getActiveTab(): ElectronTabs.Tab | null;
|
|
getTabs(): ElectronTabs.Tab[];
|
|
eachTab<T extends object>(
|
|
fn: (this: T, currentTab: ElectronTabs.Tab, index: number, tabs: ElectronTabs.Tab[]) => void,
|
|
thisArg?: T,
|
|
): void;
|
|
tabContainer: HTMLElement;
|
|
}
|
|
|
|
declare namespace ElectronTabs {
|
|
export interface TabGroupOptions {
|
|
tabContainerSelector?: string;
|
|
buttonsContainerSelector?: string;
|
|
viewContainerSelector?: string;
|
|
tabClass?: string;
|
|
viewClass?: string;
|
|
closeButtonText?: string;
|
|
newTabButtonText?: string;
|
|
newTab?: TabOptions | (() => TabOptions);
|
|
ready?: (tabGroup: ElectronTabs) => void;
|
|
}
|
|
|
|
export interface TabOptions {
|
|
title?: string;
|
|
src?: string;
|
|
badge?: string;
|
|
iconURL?: string;
|
|
icon?: string;
|
|
closable?: boolean;
|
|
webviewAttributes?: {[key: string]: any};
|
|
visible?: boolean;
|
|
active?: boolean;
|
|
ready?: (tab: Tab) => void;
|
|
}
|
|
|
|
export interface Tab extends EventEmitter {
|
|
id: number;
|
|
setTitle(title: string): void;
|
|
getTitle(): string;
|
|
setBadge(badge: string): void;
|
|
getBadge(): string;
|
|
setIcon(iconURL?: string, icon?: undefined | null): void;
|
|
setIcon(iconURL: undefined | null, icon: string): void;
|
|
getIcon(): string;
|
|
setPosition(position: number): Tab | null;
|
|
getPosition(fromRight?: boolean): number;
|
|
activate(): void;
|
|
show(shown?: boolean): void;
|
|
hide(): void;
|
|
flash(shown?: boolean): void;
|
|
unflash(): void;
|
|
close(force?: boolean): void;
|
|
webview: WebviewTag;
|
|
}
|
|
}
|
|
|
|
export = ElectronTabs;
|