mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 03:29:00 +01:00
Cleanup GlobPattern handling in extension host (#140689)
* rewrite `NotebookExclusiveDocumentPattern` handling (#140491) * 💄 * also fix #140707 * address feedback
This commit is contained in:
@@ -385,7 +385,11 @@ export interface ILanguageConfigurationDto {
|
||||
};
|
||||
}
|
||||
|
||||
export type GlobPattern = string | { base: string; pattern: string; };
|
||||
export type GlobPattern = string | IRelativePattern;
|
||||
|
||||
export interface IRelativePatternDto extends IRelativePattern {
|
||||
baseUri: UriComponents;
|
||||
}
|
||||
|
||||
export interface IDocumentFilterDto {
|
||||
$serialized: true;
|
||||
|
||||
Reference in New Issue
Block a user