9 lines
238 B
TypeScript
9 lines
238 B
TypeScript
export declare class FilePatternAssociation {
|
|
private schemas;
|
|
private patternRegExp;
|
|
constructor(pattern: string);
|
|
addSchema(id: string): void;
|
|
matchesPattern(fileName: string): boolean;
|
|
getSchemas(): string[];
|
|
}
|