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

    Interface ArrayField<F, L>

    A field that contains an array of other fields.

    interface ArrayField<
        F extends NexusField = NexusField,
        L extends number = number,
    > {
        array: readonly F[] & { length: L };
        location: NexusLocation;
    }

    Type Parameters

    Implements

    Index

    Properties

    Properties

    array: readonly F[] & { length: L }

    The array of fields contained in this array field.

    location: NexusLocation