The collection of field extensions belonging to a data/Schema!Schema.

interface FieldExtensionCollection {
    initializedItems: ReadOnlyCollection<FieldExtension>;
    forField(field: Field): FieldExtension;
}

Hierarchy (view full)

Properties

Methods

Properties

Returns a collection of the initialized items.

Methods

  • Returns the field extension for the given field.

    Parameters

    • field: Field

      The field to get the field extension for.

    Returns FieldExtension