/**
 * Defines a tag as defined in the Gherkin specification
 */
export interface ITag {
    name: string;
    line: number;
}
