export type SkipFn = (name: string) => boolean; export type SkipListEntry = string | RegExp | SkipFn; export type SkipList = SkipListEntry[]; export type PreparedSkipList = { strings: Set; functions: SkipFn[]; regexps: RegExp[]; }; //# sourceMappingURL=skip-list.contract.d.ts.map