@clerk/shared
Version:
Internal package utils used by the Clerk SDKs
8 lines • 486 B
text/typescript
//#region src/internal/clerk-js/querystring.d.ts
declare const getQueryParams: (queryString: string) => Record<string, string>;
type StringifyQueryParamsOptions = {
keyEncoder?: (key: string) => string;
};
declare const stringifyQueryParams: (params: Record<string, string | undefined | null | object | boolean | Array<string | undefined | null>> | null | undefined | string, opts?: StringifyQueryParamsOptions) => string;
//#endregion
export { getQueryParams, stringifyQueryParams };