gherkin-ast
Version:
JS model for Gherkin feature files
18 lines (17 loc) • 398 B
TypeScript
export declare enum TagFormat {
PARAMETERLESS = 0,
FUNCTIONAL = 1,
ASSIGNMENT = 2,
UNDERSCORE = 3
}
export type ParseConfig = {
tagFormat: TagFormat;
};
declare class Configuration {
private config;
constructor(config?: ParseConfig);
set(config?: Partial<ParseConfig>): void;
get(): ParseConfig;
}
declare const _default: Configuration;
export default _default;