Type alias ReadonlyReactiveList<TValue>

ReadonlyReactiveList<TValue>: Pick<ReactiveList<TValue>, typeof Symbol.iterator | "$" | "array" | "length" | "entries" | "values" | "keys" | "get" | "first" | "last" | "splice" | "toString" | "toLocaleString" | "toJSON" | "dispose">

A readonly reactive list. Similar to an Array except bracket-notation(e.g. arr[0]) is not allowed to get elements. Changes to the list will be notified to subscribers of list.$.

Type Parameters

  • TValue