Files
zulip-desktop/app/common/types.ts
2021-03-29 18:01:52 -07:00

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;
}