Variable queryStringHelpersConst
queryStringHelpers: {
append: (
url: string,
params: Record<string, undefined | null | string | number | boolean>,
) => string;
parse: (queryString: string) => Record<string, string>;
stringify: (
params: Record<string, undefined | null | string | number | boolean>,
options?: { skipEmpty?: boolean; skipNull?: boolean },
) => string;
} = ...
Type declaration
append: (
url: string,
params: Record<string, undefined | null | string | number | boolean>,
) => string
parse: (queryString: string) => Record<string, string>
stringify: (
params: Record<string, undefined | null | string | number | boolean>,
options?: { skipEmpty?: boolean; skipNull?: boolean },
) => string
查询字符串辅助函数集合