@goparrot/geocoder
Version:
TypeScript GeoCoder, node geocoding library, supports google maps, mapquest, here, open street map, tom tom
5 lines (4 loc) • 306 B
TypeScript
import type { LoggableInterface } from '../logger';
import type { Constructor } from '../types';
import type { ProvidableInterface } from './providable.interface';
export declare function ProvidableMixin<TBase extends Constructor<LoggableInterface>>(Base: TBase): TBase & Constructor<ProvidableInterface>;