The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/definition/IInstance.ts

21 lines
348 B

export interface IInstance {
address: string;
currentStatus: {
connected: boolean;
retryCount: number;
retryTime: number;
status: string;
};
instanceRecord: {
name: string;
pid: number;
_createdAt: Date;
_id: string;
_updatedAt: Date;
extraInformation: {
host: string;
nodeVersion: string;
port: string;
};
};
}