UNPKG
@appotter/nestjs-s3
Version:
latest (3.1.0)
3.1.0
3.0.2
3.0.1
3.0.0
2.0.2
2.0.1
2.0.0
1.0.0
NestJS provider to integrates with AWS S3
github.com/appotter/nestjs-s3
appotter/nestjs-s3
@appotter/nestjs-s3
/
dist
/
s3.module.d.ts
8 lines
(7 loc)
•
302 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
DynamicModule
}
from
'@nestjs/common'
;
import
{
Options
,
OptionsAsync
}
from
'./interfaces'
;
export
declare
class
S3Module
{
static
register
(
config
:
Options
):
DynamicModule
;
static
registerAsync
(
config
:
OptionsAsync
):
Promise
<
DynamicModule
>;
private
static
createAsyncProviders; }