Type alias Channel<T>

Channel<T>: {
    meta?: boolean;
    mode: ChannelMode;
    name: string;
    schema: z.ZodSchema<T>;
}

Type Parameters

Type declaration

  • Optional meta?: boolean

    Whether the channel is a meta channel (not meant to be used by the user)

  • mode: ChannelMode

    The mode of the channel

  • name: string

    The name of the channel (prefixes will be added automatically, ensuring topic and service channels of the same name are unique)

  • schema: z.ZodSchema<T>

    The schema of the channel

Generated using TypeDoc