UNPKG

@meijering/nestjs-molliepayment

Version:

NestJs Wrapper around Mollie Api

10 lines (9 loc) 347 B
import { ConfigService } from '@nestjs/config'; import { List, Method } from '@mollie/api-client'; export declare class MethodsService { private configService; constructor(configService: ConfigService); private readonly mollieClient; getMethods(): Promise<List<Method>>; getIssuersForMethod(method: string): Promise<Method>; }