UNPKG

261 BTypeScriptView Raw
1import { Repository } from './repository';
2
3export class Ignore {
4 static addRule(repo: Repository, rules: string): number;
5 static clearInternalRules(repo: Repository): number;
6 static pathIsIgnored(repo: Repository, path: string): Promise<number>;
7}