6 lines
140 B
TypeScript
6 lines
140 B
TypeScript
|
import { IGeorouter } from './georouter.interface';
|
||
|
|
||
|
export interface ICreateGeorouter {
|
||
|
create(type: string, url: string): IGeorouter;
|
||
|
}
|