mirror of
https://github.com/zulip/zulip-desktop.git
synced 2025-11-03 13:33:18 +00:00
13 lines
177 B
TypeScript
13 lines
177 B
TypeScript
export interface ServerConf {
|
|
url: string;
|
|
alias?: string;
|
|
icon?: string;
|
|
}
|
|
|
|
export interface TabData {
|
|
role: string;
|
|
name: string;
|
|
index: number;
|
|
webviewName: string;
|
|
}
|