matcher/old/modules/geography/domain/interfaces/georouter.interface.ts

8 lines
273 B
TypeScript
Raw Normal View History

2023-05-11 15:47:55 +00:00
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[]>;
}