import BaseService from "../../service"; import { IService, IResourceMapper } from "../../interfaces"; import { ILodging, ILodgingResource } from "./"; export interface ILodgingService extends IService { } export default class LodgingService extends BaseService implements ILodgingService { resource: string; mapper: IResourceMapper; url(): string; }