Obj | @uirouter/core
Options
Menu

Interface Obj

Hierarchy

  • Object
    • Obj

Indexable

[key: string]: any

Index

Properties

Object: ObjectConstructor

Provides functionality common to all JavaScript objects.

Provides functionality common to all JavaScript objects.

constructor: Function

The initial value of Object.prototype.constructor is the standard built-in Object constructor.

The initial value of Object.prototype.constructor is the standard built-in Object constructor.

Methods

  • hasOwnProperty(v: string): boolean
  • Determines whether an object has a property with the specified name.

  • Determines whether an object has a property with the specified name.

    Parameters

    • v string
      :

      A property name.

    Returns boolean


  • isPrototypeOf(v: Object): boolean
  • Determines whether an object exists in another object's prototype chain.

  • Determines whether an object exists in another object's prototype chain.

    Parameters

    • v Object
      :

      Another object whose prototype chain is to be checked.

    Returns boolean


  • propertyIsEnumerable(v: string): boolean
  • Determines whether a specified property is enumerable.

  • Determines whether a specified property is enumerable.

    Parameters

    • v string
      :

      A property name.

    Returns boolean


  • toLocaleString(): string
  • Returns a date converted to a string using the current locale.

  • Returns a date converted to a string using the current locale.

    Returns string


  • toString(): string
  • Returns a string representation of an object.

  • Returns a string representation of an object.

    Returns string


  • valueOf(): Object
  • Returns the primitive value of the specified object.

  • Returns the primitive value of the specified object.

    Returns Object


Generated using TypeDoc