sdg
Version:
pomelo ts
21 lines (20 loc) • 375 B
TypeScript
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;
}