gherkin-ast
Version:
JS model for Gherkin feature files
11 lines (10 loc) • 339 B
TypeScript
import { GherkinCommentHandler } from "../common";
import { GherkinBackground } from "../gherkinObject";
import { Element } from "./element";
/**
* Model for Background
*/
export declare class Background extends Element {
static parse(obj: GherkinBackground, comments?: GherkinCommentHandler): Background;
clone(): Background;
}