Files
matcher/old/modules/matcher/domain/interfaces/georouter.interface.ts
2023-08-16 12:28:20 +02:00

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[]>;
}