summaryrefslogtreecommitdiff
path: root/server/web/src/interfaces/AllReducer.interface.ts
blob: f70cc4a07ecc79db455b24e6bb4dccc94e07b1ee (plain)
1
2
3
4
5
6
7
8
import { IClient } from './Client.interface';

export interface IAllReducer {
    clients: Map<string, IClient>;
    session: Set<string>;
    sessionLoad?: any;
    clientsLoad?: any;
}