Variable channelSchemaConst
channelSchema: ZodObject<{
meta: ZodOptional<ZodBoolean>;
mode: ZodUnion<[ZodLiteral<"topic">, ZodLiteral<"service">]>;
name: ZodString;
schema: ZodUnknown;
}, "strip", ZodTypeAny, {
meta: undefined | boolean;
mode: "topic" | "service";
name: string;
schema: unknown;
}, {
meta: undefined | boolean;
mode: "topic" | "service";
name: string;
schema: unknown;
}> = ...