UNPKG

235 BTypeScriptView Raw
1/**
2 * Decode the URI Component encoded query string to object.
3 *
4 * @param value The URI Component encoded query string.
5 * @returns The decoded object.
6 */
7export default function decode(value: string): {
8 [key: string]: any;
9};