Variable subscribeMessageParamsSchemaConst
subscribeMessageParamsSchema: ZodObject<
{
options: ZodObject<
{
all: ZodOptional<ZodBoolean>;
periodic: ZodOptional<ZodNumber>;
prefix: ZodOptional<ZodBoolean>;
topicsonly: ZodOptional<ZodBoolean>;
},
"strip",
{
all?: boolean;
periodic?: number;
prefix?: boolean;
topicsonly?: boolean;
},
{
all?: boolean;
periodic?: number;
prefix?: boolean;
topicsonly?: boolean;
},
>;
subuid: ZodNumber;
topics: ZodArray<ZodString>;
},
"strip",
{
options: {
all?: boolean;
periodic?: number;
prefix?: boolean;
topicsonly?: boolean;
};
subuid: number;
topics: string[];
},
{
options: {
all?: boolean;
periodic?: number;
prefix?: boolean;
topicsonly?: boolean;
};
subuid: number;
topics: string[];
},
> = ...
Schema for the subscribe message params in the NT protocol.