gherkin
Version:
13 lines (12 loc) • 360 B
TypeScript
export interface IGherkinOptions {
defaultDialect?: string;
includeSource?: boolean;
includeGherkinDocument?: boolean;
includePickles?: boolean;
}
export declare function gherkinOptions(options: IGherkinOptions): {
defaultDialect?: string;
includeSource?: boolean;
includeGherkinDocument?: boolean;
includePickles?: boolean;
};