(
type: WorkspaceChangeType,
path: string,
entryType: EntryType
)
| 305 | } |
| 306 | |
| 307 | private emit( |
| 308 | type: WorkspaceChangeType, |
| 309 | path: string, |
| 310 | entryType: EntryType |
| 311 | ): void { |
| 312 | if (this.onChange) this.onChange({ type, path, entryType }); |
| 313 | } |
| 314 | |
| 315 | private _observe(type: string, payload: Record<string, unknown>): void { |
| 316 | wsChannel.publish({ |
no outgoing calls
no test coverage detected