• Parses the query string parameters from a given URL.

    Parameters

    • url: any

      The URL to parse the query string parameters from.

    Returns {
        [k: string]: T;
    }

    • An object containing the parsed query string parameters, or null if there are no parameters.
    • [k: string]: T