mirror of
https://gitlab.com/mobicoop/v3/service/matcher.git
synced 2026-01-11 16:52:41 +00:00
8 lines
286 B
TypeScript
8 lines
286 B
TypeScript
import { NamedRoute } from '../entities/ecosystem/named-route';
|
|
import { GeorouterSettings } from '../types/georouter-settings.type';
|
|
import { Path } from '../types/path.type';
|
|
|
|
export interface IGeorouter {
|
|
route(paths: Path[], settings: GeorouterSettings): Promise<NamedRoute[]>;
|
|
}
|