Variable serverMetaSchemaConst

serverMetaSchema: ZodObject<{
    clients: ZodRecord<ZodString, ZodObject<{
        services: ZodRecord<ZodString, ZodObject<{
            responseSchema: ZodOptional<ZodObject<{}, "passthrough", ZodTypeAny, {}, {}>>;
            schema: ZodObject<{}, "passthrough", ZodTypeAny, {}, {}>;
        }, "strip", ZodTypeAny, {
            responseSchema: undefined | {};
            schema: {};
        }, {
            responseSchema: undefined | {};
            schema: {};
        }>>;
    }, "strip", ZodTypeAny, {
        services: Record<string, ({ responseSchema?: {} | undefined; schema: {}; })>;
    }, {
        services: Record<string, ({ responseSchema?: {} | undefined; schema: {}; })>;
    }>>;
    serverID: ZodString;
}, "strip", ZodTypeAny, {
    clients: Record<string, ({ services: Record<string, { responseSchema?: {} | undefined; schema: {}; }>; })>;
    serverID: string;
}, {
    clients: Record<string, ({ services: Record<string, { responseSchema?: {} | undefined; schema: {}; }>; })>;
    serverID: string;
}> = ...

Generated using TypeDoc