UNPKG
@aprilnea/nest-file-fastify
Version:
latest (0.1.0)
0.1.0
fastify-multipart decorators for Nest.js
@aprilnea/nest-file-fastify
/
build
/
src
/
interceptors
/
file-interceptor.d.ts
4 lines
(3 loc)
•
218 B
TypeScript
View Raw
1
2
3
4
import
{
NestInterceptor
,
Type
}
from
"@nestjs/common"
;
import
{
UploadOptions
}
from
"../multipart/options"
;
export
declare
function
FileInterceptor
(
fieldName
:
string
,
options
?:
UploadOptions
):
Type
<
NestInterceptor
>;