Sanity Library Reference Docs
    Preparing search index...

    Type Alias MixedArrayError

    This error may happen for objects if we encounter fields that are not declared in the schema

    type MixedArrayError = {
        schemaType: ArraySchemaType;
        type: "MIXED_ARRAY";
        value: unknown[];
    }
    Index

    Properties

    Properties

    schemaType: ArraySchemaType
    type: "MIXED_ARRAY"
    value: unknown[]