Variable reportSchemaConst

reportSchema: ZodObject<{
    categories: ZodArray<ZodNumber, "many">;
    comment: ZodOptional<ZodString>;
    ip: ZodEffects<ZodString, string, string>;
}, "strip", ZodTypeAny, {
    categories: number[];
    comment?: string;
    ip: string;
}, {
    categories: number[];
    comment?: string;
    ip: string;
}> = ...

Type declaration

  • categories: ZodArray<ZodNumber, "many">

    Array of categories

  • comment: ZodOptional<ZodString>

    Message to be added to the report, limited to 1024 characters.

  • ip: ZodEffects<ZodString, string, string>

    Single IPv4/IPv6 address.

Type declaration

  • categories: number[]

    Array of categories

  • Optional comment?: string

    Message to be added to the report, limited to 1024 characters.

  • ip: string

    Single IPv4/IPv6 address.

Type declaration

  • categories: number[]

    Array of categories

  • Optional comment?: string

    Message to be added to the report, limited to 1024 characters.

  • ip: string

    Single IPv4/IPv6 address.

Generated using TypeDoc