mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-01-20 01:35:36 -05:00
Caches failed blames to reduce blame calls Only clear failed blames from cache on change/save Add better error messages and handling
11 lines
278 B
TypeScript
11 lines
278 B
TypeScript
declare module "ignore" {
|
|
namespace ignore {
|
|
interface Ignore {
|
|
add(patterns: string | Array<string> | Ignore): Ignore;
|
|
filter(paths: Array<string>): Array<string>;
|
|
}
|
|
}
|
|
function ignore(): ignore.Ignore;
|
|
export = ignore;
|
|
}
|