@dxos/client
    Preparing search index...

    Interface Any

    Object with arbitrary properties.

    NOTE: Due to how typescript works, this type is not assignable to a specific schema type. In that case, use Obj.instanceOf to check if an object is of a specific type.

    This type is very permissive and allows accessing any property on the object. We should move to Obj.Any that is not permissive and requires explicit instanceof checks..

    interface Any {
        "[KindId]": EntityKind;
        id: string;
        [key: string]: unknown;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: unknown
    Index

    Properties

    Properties

    "[KindId]": EntityKind
    id: string