@cucumber/cucumber
Version:
The official JavaScript implementation of Cucumber.
8 lines (7 loc) • 418 B
TypeScript
import { ISnippetSnytax, ISnippetSyntaxBuildOptions, SnippetInterface } from './snippet_syntax';
export default class JavaScriptSnippetSyntax implements ISnippetSnytax {
private readonly snippetInterface;
constructor(snippetInterface: SnippetInterface);
build({ comment, generatedExpressions, functionName, stepParameterNames, }: ISnippetSyntaxBuildOptions): string;
private escapeSpecialCharacters;
}