fixed typo in tg-arguments-host.interface.ts

This commit is contained in:
Vadim Akhtyamov
2021-09-16 21:37:59 +03:00
parent 2ba269693f
commit fc8b246027
4 changed files with 3 additions and 3 deletions

View File

@@ -0,0 +1,6 @@
import { ArgumentsHost } from '@nestjs/common';
export interface TgArgumentsHost extends ArgumentsHost {
getContext<T = any>(): T;
getNext<T = any>(): T;
}