0
0
mirror of https://github.com/Maks1mS/nestjs-telegraf.git synced 2025-07-25 16:03:43 +03:00
nestjs-telegraf/lib/execution-context/telegraf-arguments-host.ts
2021-09-16 21:37:59 +03:00

23 lines
654 B
TypeScript

import { ArgumentsHost } from '@nestjs/common';
import { ExecutionContextHost } from '@nestjs/core/helpers/execution-context-host';
import { TgArgumentsHost } from './tg-arguments-host.interface';
export class TelegrafArgumentsHost
extends ExecutionContextHost
implements TgArgumentsHost {
static create(context: ArgumentsHost): TelegrafArgumentsHost {
const type = context.getType();
const tgContext = new TelegrafArgumentsHost(context.getArgs());
tgContext.setType(type);
return tgContext;
}
getContext<T = any>(): T {
return this.getArgByIndex(0);
}
getNext<T = any>(): T {
return this.getArgByIndex(1);
}
}