UNPKG

gpc-remove-duplicates

Version:

This GherKing Precompiler is responsible for having only a reasonable amount of tags and/or rows in each feature file.

7 lines (6 loc) 268 B
import { Tag } from "gherkin-ast"; import ObjectSetType = require("object-set-type"); export declare function removeDuplicates(tags: Tag[], ...tagsToIgnore: Tag[]): Tag[]; export declare class TagSet extends ObjectSetType<Tag> { equals(a: Tag, b: Tag): boolean; }