UNPKG

524 BTypeScriptView Raw
1import ParameterTypeRegistry from './ParameterTypeRegistry';
2import GeneratedExpression from './GeneratedExpression';
3export default class CucumberExpressionGenerator {
4 private readonly parameterTypeRegistry;
5 constructor(parameterTypeRegistry: ParameterTypeRegistry);
6 generateExpressions(text: string): GeneratedExpression[];
7 /**
8 * @deprecated
9 */
10 generateExpression(text: string): GeneratedExpression;
11 private createParameterTypeMatchers;
12 private static createParameterTypeMatchers2;
13}