UNPKG

feathers-shippo

Version:

A Feathers JS adapter for the Shippo API

13 lines (12 loc) 343 B
import { ShippoService, ServiceOptions, ID, Params, App } from '../service'; interface RatesParams extends Params { query: { shipment: ID; rates: string; }; } export declare class ShippoRates extends ShippoService { constructor(options: ServiceOptions, app: App); _find(params?: RatesParams): any; } export {};