UNPKG
@softkit/i18n
Version:
latest (0.4.5)
0.4.5
0.4.4
0.4.3
0.4.2
0.4.1
0.4.0
0.1.2
0.1.1
0.1.0
0.0.6
0.0.5
0.0.4
0.0.3
This library is a simple wrapper based on [nestjs-i18n](https://nestjs-i18n.com/)
@softkit/i18n
/
src
/
lib
/
__tests__
/
app
/
interceptors
/
test.interceptor.d.ts
6 lines
(5 loc)
•
260 B
TypeScript
View Raw
1
2
3
4
5
6
import
{
CallHandler
,
ExecutionContext
,
NestInterceptor
}
from
'@nestjs/common'
;
import
{
Observable
}
from
'rxjs'
;
export
declare
class
TestInterceptor
implements
NestInterceptor
{
intercept
(
_
:
ExecutionContext
,
next
:
CallHandler
):
Observable
<
unknown
>; }