Merge pull request #70 from beig/master

Added id to interface Tab
This commit is contained in:
Thomas Brouard 2018-11-27 12:23:26 +01:00 committed by GitHub
commit 8c1717503a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

1
index.d.ts vendored
View file

@ -43,6 +43,7 @@ declare namespace ElectronTabs {
}
export interface Tab extends EventEmitter {
id: number;
setTitle(title: string): void;
getTitle(): string;
setBadge(badge: string): void;