From fc8b246027a8156060b16431ceba1d477e6999e4 Mon Sep 17 00:00:00 2001 From: Vadim Akhtyamov Date: Thu, 16 Sep 2021 21:37:59 +0300 Subject: [PATCH] fixed typo in tg-arguments-host.interface.ts --- lib/execution-context/index.ts | 2 +- lib/execution-context/telegraf-arguments-host.ts | 2 +- lib/execution-context/telegraf-execution-context.ts | 2 +- ...rguments-host.interace.ts => tg-arguments-host.interface.ts} | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename lib/execution-context/{tg-arguments-host.interace.ts => tg-arguments-host.interface.ts} (100%) diff --git a/lib/execution-context/index.ts b/lib/execution-context/index.ts index 4150b50..a6f59b0 100644 --- a/lib/execution-context/index.ts +++ b/lib/execution-context/index.ts @@ -1,3 +1,3 @@ -export * from './tg-arguments-host.interace'; +export * from './tg-arguments-host.interface'; export * from './telegraf-arguments-host'; export * from './telegraf-execution-context'; diff --git a/lib/execution-context/telegraf-arguments-host.ts b/lib/execution-context/telegraf-arguments-host.ts index 79a2c10..0854642 100644 --- a/lib/execution-context/telegraf-arguments-host.ts +++ b/lib/execution-context/telegraf-arguments-host.ts @@ -1,6 +1,6 @@ import { ArgumentsHost } from '@nestjs/common'; 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 extends ExecutionContextHost diff --git a/lib/execution-context/telegraf-execution-context.ts b/lib/execution-context/telegraf-execution-context.ts index d0c9613..44f5795 100644 --- a/lib/execution-context/telegraf-execution-context.ts +++ b/lib/execution-context/telegraf-execution-context.ts @@ -1,6 +1,6 @@ import { ContextType, ExecutionContext } from '@nestjs/common'; 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; diff --git a/lib/execution-context/tg-arguments-host.interace.ts b/lib/execution-context/tg-arguments-host.interface.ts similarity index 100% rename from lib/execution-context/tg-arguments-host.interace.ts rename to lib/execution-context/tg-arguments-host.interface.ts