hubot-command-mapper
Version:
Helps with mapping tools and commands to Hubot.
17 lines (16 loc) • 419 B
text/typescript
import { ChoiceParameter } from "./ChoiceParameter.mjs";
/**
* Matches a token. A token must be present.
*
* @export
* @class TokenParameter
* @extends {ChoiceParameter}
*/
export declare class TokenParameter extends ChoiceParameter {
/**
*Creates an instance of TokenParameter.
* @param {string} name The name of the token.
* @memberof TokenParameter
*/
constructor(token: string);
}