strapi-plugin-masterclass
Version:
13 lines (12 loc) • 359 B
TypeScript
import type { Core } from '@strapi/strapi';
declare const paymentsService: ({ strapi }: {
strapi: Core.Strapi;
}) => {
create(params: any): Promise<any>;
confirm(params: any): Promise<any>;
};
export default paymentsService;
export type PaymentsService = {
create: (params: any) => Promise<any>;
confirm: (params: any) => Promise<any>;
};