UNPKG

gherkin-lint-ts

Version:

Gherkin features linter written in Typescript

11 lines (10 loc) 207 B
import { Feature } from "./cucumber"; export declare type File = { lines: string[]; relativePath: string; }; export interface RuleParams<T> { feature?: Feature; file: File; config?: T; }