You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
511 B
9 lines
511 B
import { URI as Uri } from 'vscode-uri'; |
|
export declare type ExclusionFunction = (filename: string) => boolean; |
|
export declare type Glob = string; |
|
export interface ExcludeFilesGlobMap { |
|
[glob: string]: boolean; |
|
} |
|
export declare function extractGlobsFromExcludeFilesGlobMap(globMap: ExcludeFilesGlobMap): string[]; |
|
export declare function pathToUri(filePath: string): Uri; |
|
export declare function generateExclusionFunctionForUri(globs: Glob[], root: string, allowedSchemes?: Set<string>): ExclusionFunction;
|
|
|