7 lines
196 B
TypeScript
7 lines
196 B
TypeScript
import { DynObject } from "./types";
|
|
declare const processURL: (url: string) => {
|
|
path: string;
|
|
query: DynObject<string>;
|
|
};
|
|
export default processURL;
|
|
//# sourceMappingURL=router.d.ts.map
|