7 lines
118 B
TypeScript
7 lines
118 B
TypeScript
export interface ClientSessionStat {
|
|
id: string;
|
|
clientId: string;
|
|
active: string;
|
|
offline: string;
|
|
}
|