import { Channel } from './channel'; import { ChannelConfig } from '../config'; export interface IChannelFactory { create(channelConfig: T): Channel; }