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

6 lines
140 B
TypeScript
Raw Normal View History

2023-05-11 15:47:55 +00:00
import { IGeorouter } from './georouter.interface';
export interface ICreateGeorouter {
create(type: string, url: string): IGeorouter;
}