Type alias ReadonlyReactiveSet<TValue>

ReadonlyReactiveSet<TValue>: Pick<ReactiveSet<TValue>, typeof Symbol.iterator | typeof Symbol.toStringTag | "toJSON" | "dispose" | "forEach" | "has" | "size" | "entries" | "keys" | "values"> & {
    $: ReadonlyVal<ReadonlyReactiveSet<TValue>>;
}

A readonly reactive set inherited from Set. Changes to the set will be notified to subscribers of set.$.

Type Parameters

  • TValue

Type declaration