nest-paapi-5
Version:
A NestJS module for Amazon's Product Advertising API 5.0 (PAAPI5)
18 lines • 562 B
TypeScript
import { PaAPI5Service } from "./paapi5.service";
import { CountryCode } from "../sign/types";
export declare class PaAPI5Module {
static forRoot({ accessKey, secretKey, countryCode, }: {
accessKey: string;
secretKey: string;
countryCode?: CountryCode;
}): {
module: typeof PaAPI5Module;
providers: {
provide: typeof PaAPI5Service;
useValue: PaAPI5Service;
}[];
exports: (typeof PaAPI5Service)[];
global: boolean;
};
}
//# sourceMappingURL=paapi5.module.d.ts.map