@wepublish/api
Version:
API core for we.publish.
8 lines (7 loc) • 374 B
TypeScript
import { ModuleAsyncOptions } from "../../../utils-api/src";
import { PaymentProvider } from './payment-provider/payment-provider';
export declare const PAYMENTS_MODULE_OPTIONS = "PAYMENTS_MODULE_OPTIONS";
export interface PaymentsModuleOptions {
paymentProviders: PaymentProvider[];
}
export type PaymentsModuleAsyncOptions = ModuleAsyncOptions<PaymentsModuleOptions>;