ChannelEntity.ts 230 B

12345678910
  1. import BN from 'bn.js';
  2. import { ChannelType } from '../schemas/channel/Channel';
  3. // TODO rename to EnrichedChannelType
  4. export type ChannelEntity = ChannelType & {
  5. // Stats:
  6. rewardEarned: BN;
  7. contentItemsCount: number;
  8. };