File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -24,6 +24,11 @@ const PURE_FUNCTIONS = new Set([
2424 'registerWorkbenchContribution' ,
2525 'Object.freeze' ,
2626 'URI.parse' ,
27+ 'registerColor' ,
28+ 'transparent' ,
29+ 'darken' ,
30+ 'lighten' ,
31+ 'Color.fromHex' ,
2732 'CommandsRegistry.registerCommand' // It's not pure but we don't want the additional static vscode commands registered
2833] )
2934const EXTENSIONS = [ '' , '.ts' , '.js' ]
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import Severity from 'vs/base/common/severity'
22import type * as vscode from 'vscode'
33import type { IProgressService } from 'vs/platform/progress/common/progress'
44import { IExtensionDescription } from 'vs/platform/extensions/common/extensions'
5+ import { NotificationsFilter } from 'vs/platform/notification/common/notification'
56
67export {
78 Severity
@@ -84,3 +85,7 @@ export { IPaneCompositePartService } from 'vs/workbench/services/panecomposite/b
8485export { IPathService } from 'vs/workbench/services/path/common/pathService'
8586export { ITextFileService } from 'vs/workbench/services/textfile/common/textfiles'
8687export { IWorkingCopyFileService } from 'vs/workbench/services/workingCopy/common/workingCopyFileService'
88+
89+ export {
90+ NotificationsFilter
91+ }
You can’t perform that action at this time.
0 commit comments