Merge pull request #527 from amzichai/fix-TgArgumentsHost-interface-typo

fixed typo in tg-arguments-host.interface.ts
This commit is contained in:
Aleksandr Bukhalo 2021-09-17 00:45:49 +03:00 committed by GitHub
commit 5acec251c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 3 additions and 3 deletions

View File

@ -1,3 +1,3 @@
export * from './tg-arguments-host.interace'; export * from './tg-arguments-host.interface';
export * from './telegraf-arguments-host'; export * from './telegraf-arguments-host';
export * from './telegraf-execution-context'; export * from './telegraf-execution-context';

View File

@ -1,6 +1,6 @@
import { ArgumentsHost } from '@nestjs/common'; import { ArgumentsHost } from '@nestjs/common';
import { ExecutionContextHost } from '@nestjs/core/helpers/execution-context-host'; import { ExecutionContextHost } from '@nestjs/core/helpers/execution-context-host';
import { TgArgumentsHost } from './tg-arguments-host.interace'; import { TgArgumentsHost } from './tg-arguments-host.interface';
export class TelegrafArgumentsHost export class TelegrafArgumentsHost
extends ExecutionContextHost extends ExecutionContextHost

View File

@ -1,6 +1,6 @@
import { ContextType, ExecutionContext } from '@nestjs/common'; import { ContextType, ExecutionContext } from '@nestjs/common';
import { ExecutionContextHost } from '@nestjs/core/helpers/execution-context-host'; import { ExecutionContextHost } from '@nestjs/core/helpers/execution-context-host';
import { TgArgumentsHost } from './tg-arguments-host.interace'; import { TgArgumentsHost } from './tg-arguments-host.interface';
export type TelegrafContextType = 'telegraf' | ContextType; export type TelegrafContextType = 'telegraf' | ContextType;