Interface IValueProvider

Interface to provide values to a certain property ID.

interface IValueProvider {
    findValues(propertyId, options?): Promise<any>;
}

Methods

Methods

  • Finds the values for the given propertyId, if it exists.

    Parameters

    • propertyId: string

      The propertyId to find the values for

    • Optional options: any

      Some additional options. May be implementer dependent, such as limit, or value restrictions

    Returns Promise<any>

    A promise containing the values.

Generated using TypeDoc