UNPKG
@meijering/nestjs-molliepayment
Version:
latest (3.1.1)
3.1.1
2.1.1
2.1.0
2.0.0
1.0.1
1.0.0
0.1.0
NestJs Wrapper around Mollie Api
gitlab.com/meijering/nestjs-molliepayment
@meijering/nestjs-molliepayment
/
dist
/
webhook
/
webhook.controller.d.ts
11 lines
(10 loc)
•
281 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
WebhookService
}
from
'./webhook.service'
;
interface
IWebhook
{
id
:
string
; }
export
declare
class
WebhookController
{
private
readonly
webhookService;
constructor
(
webhookService
:
WebhookService
);
checkPayment
(
params
:
IWebhook
):
Promise
<
any
>; }
export
{};