15 lines
278 B
Plaintext
15 lines
278 B
Plaintext
import { RouterCore } from "@tanstack/router-core";
|
|
const createRouter = (options) => {
|
|
return new Router(options);
|
|
};
|
|
class Router extends RouterCore {
|
|
constructor(options) {
|
|
super(options);
|
|
}
|
|
}
|
|
export {
|
|
Router,
|
|
createRouter
|
|
};
|
|
//# sourceMappingURL=router.js.map
|