Options
All
  • Public
  • Public/Protected
  • All
Menu

Module IObservableJSON

The namespace for IObservableJSON related interfaces.

Index

Type aliases

ChangeType

ChangeType: "add" | "remove" | "change"

The change types which occur on an observable map.

Properties

changed

changed: ISignal<this, IChangedArgs<JSONValue>>

A signal emitted when the map has changed.

isDisposed

isDisposed: boolean

Test whether the object has been disposed.

Notes

This property is always safe to access.

size

size: number

The number of key-value pairs in the map.

type

type: "Map"

The type of the Observable.

Methods

clear

  • clear(): void

delete

  • delete(key: string): JSONValue | undefined
  • Remove a key from the map

    Parameters

    • key: string

      the key to remove.

    Returns JSONValue | undefined

    the value of the given key, or undefined if that does not exist.

dispose

  • dispose(): void

get

  • get(key: string): JSONValue | undefined
  • Get a value for a given key.

    Parameters

    • key: string

      the key.

    Returns JSONValue | undefined

    the value for that key.

has

  • has(key: string): boolean
  • Check whether the map has a key.

    Parameters

    • key: string

      the key to check.

    Returns boolean

    true if the map has the key, false otherwise.

keys

  • keys(): string[]

set

  • set(key: string, value: JSONValue): JSONValue | undefined
  • Set a key-value pair in the map

    Parameters

    • key: string

      The key to set.

    • value: JSONValue

      The value for the key.

    Returns JSONValue | undefined

    the old value for the key, or undefined if that did not exist.

toJSON

  • toJSON(): JSONObject

values

  • values(): JSONValue[]

Generated using TypeDoc