Variable subscriptionOptionsSchemaConst

subscriptionOptionsSchema: 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;
    },
> = ...

Schema for subscription options in the NT protocol.