UNPKG

gherkin-ast

Version:

JS model for Gherkin feature files

15 lines (14 loc) 501 B
import { GherkinCommentHandler } from "../common"; import { GherkinDataTable } from "../gherkinObject"; import { TableRow } from "./tableRow"; import { UniqueObject } from "./uniqueObject"; /** * Model for DataTable */ export declare class DataTable extends UniqueObject { rows: TableRow[]; static parse(obj: GherkinDataTable, comments?: GherkinCommentHandler): DataTable; constructor(rows?: TableRow[]); clone(): DataTable; replace(key: RegExp | string, value: string): void; }