ntcore-ts-client
    Preparing search index...

    Variable subscribeMessageSchemaConst

    subscribeMessageSchema: ZodObject<
        {
            method: ZodLiteral<"subscribe">;
            params: ZodObject<
                {
                    options: ZodObject<
                        {
                            all: ZodOptional<ZodBoolean>;
                            periodic: ZodOptional<ZodNumber>;
                            prefix: ZodOptional<ZodBoolean>;
                            topicsonly: ZodOptional<ZodBoolean>;
                        },
                        "strip",
                        ZodTypeAny,
                        {
                            all?: boolean;
                            periodic?: number;
                            prefix?: boolean;
                            topicsonly?: boolean;
                        },
                        {
                            all?: boolean;
                            periodic?: number;
                            prefix?: boolean;
                            topicsonly?: boolean;
                        },
                    >;
                    subuid: ZodNumber;
                    topics: ZodArray<ZodString, "many">;
                },
                "strip",
                ZodTypeAny,
                {
                    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[];
                },
            >;
        },
        "strip",
        ZodTypeAny,
        {
            method: "subscribe";
            params: {
                options: {
                    all?: boolean;
                    periodic?: number;
                    prefix?: boolean;
                    topicsonly?: boolean;
                };
                subuid: number;
                topics: string[];
            };
        },
        {
            method: "subscribe";
            params: {
                options: {
                    all?: boolean;
                    periodic?: number;
                    prefix?: boolean;
                    topicsonly?: boolean;
                };
                subuid: number;
                topics: string[];
            };
        },
    > = ...

    Schema for a subscribe message in the NT protocol.