@furystack/rest
Version: 
Generic REST package
9 lines • 416 B
TypeScript
/**
 * Decodes a URL-safe base64 encoded JSON string back to its original value
 * Decoding steps: See the encoding steps in reverse order
 * @param value The value to decode
 * @returns The decoded value
 */
export declare const decode: <T>(value: string) => T;
export declare const deserializeQueryString: (fullQueryString: string) => Record<string, unknown>;
//# sourceMappingURL=deserialize-query-string.d.ts.map