UNPKG

gherkin-ast

Version:

JS model for Gherkin feature files

13 lines (12 loc) 370 B
import { GherkinTableCell } from "../gherkinObject"; import { UniqueObject } from "./uniqueObject"; /** * Model for TableCell */ export declare class TableCell extends UniqueObject { value: string; static parse(obj: GherkinTableCell): TableCell; constructor(value: string); clone(): TableCell; replace(key: RegExp | string, value: string): void; }