channel.ts 134 B

123456
  1. export type IChannel = {
  2. id: string;
  3. name: string;
  4. };
  5. export type IChannelOptionalId = Omit<IChannel, 'id'> & Partial<IChannel>;