/** * @author: JP Lew (jp@cto.ai) * @date: Sunday, 28th April 2019 1:16:46 am * @lastModifiedBy: JP Lew (jp@cto.ai) * @lastModifiedTime: Friday, 7th June 2019 2:56:00 pm * @copyright (c) 2019 CTO.ai */ /// import feathers from '@feathersjs/feathers'; export declare const localFeathersHost: string; export declare class FeathersClient { feathersClient: feathers.Application; constructor(apiUrl?: string); find(service: string, payload: object): Promise; create(service: string, payload: object, params?: object): Promise; patch(service: string, token: string, payload: object): Promise; remove(service: string, id: string, params?: object): Promise; }