import { FRONTEND_ID, UID } from './IConnector';
import Channel from '../common/service/channel/channel';
/**
 * channel
 */
export interface IGroups {
    [sid: string]: UID[];
}
export interface IRecords {
    [uid: string]: {
        frontendId: FRONTEND_ID;
        uid: UID;
    };
}
/**
 * channelService
 */
export interface IChannels {
    [name: string]: Channel;
}
