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
/
helpers.d.ts
5 lines
(4 loc)
•
250 B
TypeScript
View Raw
1
2
3
4
5
import
{
UploadedFile
}
from
'./interfaces'
;
export
declare
const
trimLastSlash
:
(
str
:
string
|
undefined
) =>
string
;
export
declare
const
getFileExtension
:
(
file
:
UploadedFile
) =>
string
;
export
declare
const
hasExtension
:
(
str
:
string
) =>
boolean
;