KC's Workspace
    Preparing search index...

    Type Alias RawIssue<T>

    RawIssue: T extends any
        ? Flatten<
            MakePartial<T, "message" | "path"> & {
                continue?: boolean;
                inst?: z.core.$ZodType | z.core.$ZodCheck;
            } & Record<string, unknown>,
        >
        : never

    Type Parameters