You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
292 B
10 lines
292 B
import { Router } from '../Router.js'; |
|
import '../_version.js'; |
|
/** |
|
* Creates a new, singleton Router instance if one does not exist. If one |
|
* does already exist, that instance is returned. |
|
* |
|
* @private |
|
* @return {Router} |
|
*/ |
|
export declare const getOrCreateDefaultRouter: () => Router;
|
|
|