import type { Contract, ContractDefinition } from 'autumndb'; export interface ChannelData { /** * Contracts matching this filter will be handled by the channel */ filter: { [k: string]: unknown; }; [k: string]: unknown; } export type ChannelContractDefinition = ContractDefinition; export type ChannelContract = Contract;