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

6 lines
140 B
TypeScript

import { IGeorouter } from './georouter.interface';
export interface ICreateGeorouter {
create(type: string, url: string): IGeorouter;
}