9 lines
144 B
TypeScript
9 lines
144 B
TypeScript
|
export interface ILivechatMonitor {
|
||
|
_id: string;
|
||
|
name: string;
|
||
|
enabled: boolean;
|
||
|
numMonitors: number;
|
||
|
type: string;
|
||
|
visibility: string;
|
||
|
}
|