Interface ParameterManager

The parameter manager is responsible to coordinate the encoding and decoding of URL parameters. An instance of this class is registered as "parametermanager.ParameterManager".

interface ParameterManager {
    getEncodedURL(baseURL?): Promise<string>;
}

Methods

  • Returns a promise resolving an encoded URL with all available parameters.

    Parameters

    • Optional baseURL: string

      url to append parameters to. Default value is window.location

    Returns Promise<string>

    url with parameters

Generated using TypeDoc