UNPKG

cucumber-steps-parser

Version:

A utility to parse the cucumber steps defined in the corresponding step definition files

9 lines (8 loc) 189 B
export interface ICucumberStepBase { rawText: string; text: string; } export interface ICucumberStep extends ICucumberStepBase { arguments: string[]; jsDocTags: string[]; }