effex-monorepo
    Preparing search index...

    Interface MapField<K, F>

    A map field for dynamic key-value pairs.

    interface MapField<K, F extends Field<any, any>> {
        _tag: "Map";
        "[FieldTypeId]": typeof FieldTypeId;
        config: FieldConfig;
        element: F;
        key: Schema<K>;
    }

    Type Parameters

    • K
    • F extends Field<any, any>
    Index

    Properties

    _tag: "Map"
    "[FieldTypeId]": typeof FieldTypeId
    config: FieldConfig
    element: F
    key: Schema<K>