feathers-shippo
Version:
A Feathers JS adapter for the Shippo API
12 lines (11 loc) • 341 B
TypeScript
import { ShippoService, ServiceOptions, ID, Params, App } from '../service';
interface TracksParams extends Params {
query: {
carrier: string;
};
}
export declare class ShippoTracks extends ShippoService {
constructor(options: ServiceOptions, app: App);
_get(id: ID, params: TracksParams): Promise<any>;
}
export {};