mirror of
https://github.com/Maks1mS/nestjs-telegraf.git
synced 2024-12-25 23:44:39 +03:00
25 lines
858 B
TypeScript
25 lines
858 B
TypeScript
import { Composer, Middleware, BaseScene, Telegraf } from 'telegraf';
|
|
|
|
export type Filter<T extends any[], F> = T extends []
|
|
? []
|
|
: T extends [infer Head, ...infer Tail]
|
|
? Head extends F
|
|
? Filter<Tail, F>
|
|
: [Head, ...Filter<Tail, F>]
|
|
: [];
|
|
|
|
export type OnlyFunctionPropertyNames<T> = {
|
|
[K in keyof T]: T[K] extends (...args: any) => any ? K : never;
|
|
}[keyof T];
|
|
|
|
export type ComposerMethodArgs<
|
|
T extends Composer<never>,
|
|
U extends OnlyFunctionPropertyNames<T> = OnlyFunctionPropertyNames<T>
|
|
> = Filter<Parameters<T[U]>, Middleware<never>>;
|
|
|
|
export type UpdateMethods = OnlyFunctionPropertyNames<Composer<never>>;
|
|
export type SceneMethods = OnlyFunctionPropertyNames<BaseScene<never>>;
|
|
|
|
export type TelegrafOption = ConstructorParameters<typeof Telegraf>[1];
|
|
export type TelegrafLaunchOption = Parameters<Telegraf<never>['launch']>[0];
|