UNPKG
nestjs-stripe
Version:
latest (1.0.0)
1.0.0
0.4.1
0.4.0
0.3.0
0.2.1
0.2.0
0.1.4
0.1.3
0.1.2
0.1.1
Provides an injectable Stripe client to nestjs modules
dhaspden/nestjs-stripe
nestjs-stripe
/
lib
/
StripeModule.d.ts
7 lines
(6 loc)
•
280 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
DynamicModule
}
from
'@nestjs/common'
;
import
{
StripeAsyncOptions
,
StripeOptions
}
from
'./interfaces'
;
export
declare
class
StripeModule
{
static
forRoot
(
options
:
StripeOptions
):
DynamicModule
;
static
forRootAsync
(
options
:
StripeAsyncOptions
):
DynamicModule
; }