mirror of
https://github.com/streamich/react-use.git
synced 2026-01-18 14:06:52 +00:00
8 lines
171 B
TypeScript
8 lines
171 B
TypeScript
export interface RouterProviderProps {
|
|
route: string;
|
|
fullRoute?: string;
|
|
parent?: any;
|
|
}
|
|
declare const createRouter: () => void;
|
|
export default createRouter;
|