@builder.io/sdk-vue
Version:
Builder.io SDK for Vue
6 lines (5 loc) • 397 B
TypeScript
export type QueryObject = Record<string, string | string[]>;
export declare const convertSearchParamsToQueryObject: (searchParams: URLSearchParams) => QueryObject;
export declare const normalizeSearchParams: (searchParams: QueryObject | URLSearchParams) => QueryObject;
export type Search = URLSearchParams | string | QueryObject;
export declare const getSearchString: (search: Search) => string;