Options
All
  • Public
  • Public/Protected
  • All
Menu

Type parameters

Hierarchy

  • MVCArrayHandlerMap

Index

Properties

insert_at

insert_at: (index: number) => void

This event is fired when insertAt() is called. The event passes the index that was passed to insertAt().

see

Maps JavaScript API

Type declaration

    • (index: number): void
    • Parameters

      • index: number

      Returns void

remove_at

remove_at: (index: number, removed: T) => void

This event is fired when removeAt() is called. The event passes the index that was passed to removeAt() and the element that was removed from the array.

see

Maps JavaScript API

Type declaration

    • (index: number, removed: T): void
    • Parameters

      • index: number
      • removed: T

      Returns void

set_at

set_at: (index: number, previous: T) => void

This event is fired when setAt() is called. The event passes the index that was passed to setAt() and the element that was previously in the array at that index.

see

Maps JavaScript API

Type declaration

    • (index: number, previous: T): void
    • Parameters

      • index: number
      • previous: T

      Returns void

Generated using TypeDoc