Interface DictStore

Inner backing data store for a dict.

Hierarchy

  • DictStore

Implemented by

Methods

  • Returns a haystack value from the dict or undefined if it can't be found.

    Parameters

    • name: string

      The name of the value to find.

    Returns undefined | OptionalHVal

    The value, null or undefined if it can't be found.

  • Removes a property from the dict.

    Parameters

    • name: string

      The property name.

    Returns void

  • Set a haystack value.

    Parameters

    • name: string

      The name to set.

    • value: OptionalHVal

      The haystack value to set.

    Returns void

Generated using TypeDoc