mirror of
https://gitlab.com/mobicoop/v3/service/matcher.git
synced 2026-03-26 04:35:49 +00:00
8 lines
273 B
TypeScript
8 lines
273 B
TypeScript
import { GeorouterSettings } from '../types/georouter-settings.type';
|
|
import { NamedRoute } from '../types/named-route';
|
|
import { Path } from '../types/path.type';
|
|
|
|
export interface IGeorouter {
|
|
route(paths: Path[], settings: GeorouterSettings): Promise<NamedRoute[]>;
|
|
}
|