export default interface IChannel {
    channel: string;
    version: string;
    state: string | null;
}
