gherkin
Version:
10 lines (9 loc) • 326 B
TypeScript
import { IdGenerator } from 'cucumber-messages';
import IGherkinOptions from './IGherkinOptions';
export default function gherkinOptions(options: IGherkinOptions): {
defaultDialect?: string;
includeSource?: boolean;
includeGherkinDocument?: boolean;
includePickles?: boolean;
newId?: IdGenerator.NewId;
};