knip
Version:
Find unused files, dependencies and exports in your TypeScript and JavaScript projects
6 lines (5 loc) • 400 B
TypeScript
import type { Tags } from '../types/cli.js';
export declare const splitTags: (rawTags: string[]) => Tags;
export declare const shouldIgnore: (jsDocTags: Set<string>, tags: Tags) => boolean;
export declare const getShouldIgnoreHandler: (isProduction: boolean) => (jsDocTags: Set<string>) => boolean;
export declare const getShouldIgnoreTagHandler: (tags: Tags) => (jsDocTags: Set<string>) => boolean;