express-msteams-host
Version:
Express utility for Microsoft Teams solutions
10 lines (9 loc) • 553 B
TypeScript
/// <reference types="qs" />
import * as express from "express";
import "reflect-metadata";
/**
* Decorator for methods to mark the webhook for the calling API
* @param endpoint Endpoint of the calling API webhook
* @deprecated
*/
export declare function BotCallingWebhook(endpoint: string): <T extends express.RequestHandler<import("express-serve-static-core").ParamsDictionary, any, any, import("qs").ParsedQs, Record<string, any>>>(target: any, propertyKey: string | symbol, descriptor: TypedPropertyDescriptor<T>) => TypedPropertyDescriptor<T>;