@quanxi/ui
Version:
全悉组件库
9 lines (8 loc) • 329 B
TypeScript
interface PartialPath {
pathname: string;
query?: Record<string, string>;
hash?: string;
}
export declare function resolveQuery(query?: Record<string, string | number | null | undefined>): string | undefined;
export declare function resolvedPath(to: string | PartialPath): import("react-router-dom").Path;
export {};