gherkin-lint-ts
Version:
Gherkin features linter written in Typescript
16 lines (15 loc) • 1.04 kB
TypeScript
import { messages } from "cucumber-messages";
export declare type Rule = messages.GherkinDocument.Feature.FeatureChild.IRule;
export declare type Background = messages.GherkinDocument.Feature.IBackground;
export declare type Examples = messages.GherkinDocument.Feature.Scenario.IExamples;
export declare type Feature = messages.GherkinDocument.IFeature;
export declare type FeatureChild = messages.GherkinDocument.Feature.IFeatureChild;
export declare type RuleChild = messages.GherkinDocument.Feature.FeatureChild.IRuleChild;
export declare type Scenario = messages.GherkinDocument.Feature.IScenario;
export declare type Step = messages.GherkinDocument.Feature.IStep;
export declare type Tag = messages.GherkinDocument.Feature.ITag;
export declare type TableCell = messages.GherkinDocument.Feature.TableRow.ITableCell;
export declare type TableRow = messages.GherkinDocument.Feature.ITableRow;
export declare type ScenarioOutline = Scenario;
export declare type Envelope = messages.IEnvelope;
export declare type Location = messages.ILocation;