Interface ObservableMapEmitsIgnored<K, V, E>

Type Parameters

  • K

  • V

  • E extends "set" | "delete" | "has" | "get"

Hierarchy

  • ObservableMapEmitsIgnored

Properties

Properties

event: Extract<{ args: [key: K, value: V]; name: "set"; result?: undefined }, { name: Exclude<"delete", E> | Exclude<"get", E> | Exclude<"has", E> | Exclude<"set", E> }> | Extract<{ args: [key: K]; name: "delete"; result: boolean }, { name: Exclude<"delete", E> | Exclude<"get", E> | Exclude<"has", E> | Exclude<"set", E> }> | Extract<{ args: [key: K]; name: "has"; result: boolean }, { name: Exclude<"delete", E> | Exclude<"get", E> | Exclude<"has", E> | Exclude<"set", E> }> | Extract<{ args: [key: K]; name: "get"; result: undefined | V }, { name: Exclude<"delete", E> | Exclude<"get", E> | Exclude<"has", E> | Exclude<"set", E> }>
map: ObservableMap<K, V>

Generated using TypeDoc