UNPKG

feathers-shippo

Version:

A Feathers JS adapter for the Shippo API

12 lines (11 loc) 353 B
import { ShippoService, ServiceOptions, ID, Params, App } from '../service'; interface AddressesParams extends Params { query: { validate?: string; }; } export declare class ShippoAddresses extends ShippoService { constructor(options: ServiceOptions, app: App); _get(id: ID, params?: AddressesParams): Promise<any>; } export {};