@audiotool/nexus - v0.0.12
    Preparing search index...

    Interface NexusEntity<E>

    A "struct"/"object" like field in the document:

    interface NexusEntity<E extends keyof EntityTypes = keyof EntityTypes> {
        entityType: E;
        fields: EntityTypes[E];
        id: string;
        location: NexusLocation;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    entityType: E

    The entity type key of this entity.

    fields: EntityTypes[E]

    the fields in this object

    id: string

    The id of this entity.

    location: NexusLocation