@convermax/api
Version:
A package for searching products via Convermax API
7 lines • 327 B
TypeScript
type QueryParamValue = string | number | boolean | null | undefined;
type QueryParamInput = QueryParamValue | QueryParamInput[] | {
[key: string]: QueryParamInput;
};
export default function queryParamsFromObject(obj: QueryParamInput, prefix?: string): string;
export {};
//# sourceMappingURL=queryParamsFromObject.d.ts.map