@ckeditor/ckeditor5-watchdog 41.4.2 → 42.0.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -0
- package/dist/index.js +435 -372
- package/dist/index.js.map +1 -1
- package/dist/types/index.d.ts +2 -2
- package/package.json +1 -1
- package/src/index.d.ts +2 -2
package/dist/types/index.d.ts
CHANGED
|
@@ -10,6 +10,6 @@
|
|
|
10
10
|
* @module watchdog
|
|
11
11
|
*/
|
|
12
12
|
export { default as ContextWatchdog } from './contextwatchdog.js';
|
|
13
|
-
export { default as EditorWatchdog } from './editorwatchdog.js';
|
|
14
|
-
export { default as Watchdog } from './watchdog.js';
|
|
13
|
+
export { default as EditorWatchdog, type EditorCreatorFunction } from './editorwatchdog.js';
|
|
14
|
+
export { default as Watchdog, type WatchdogConfig } from './watchdog.js';
|
|
15
15
|
import './augmentation.js';
|
package/package.json
CHANGED
package/src/index.d.ts
CHANGED
|
@@ -6,6 +6,6 @@
|
|
|
6
6
|
* @module watchdog
|
|
7
7
|
*/
|
|
8
8
|
export { default as ContextWatchdog } from './contextwatchdog.js';
|
|
9
|
-
export { default as EditorWatchdog } from './editorwatchdog.js';
|
|
10
|
-
export { default as Watchdog } from './watchdog.js';
|
|
9
|
+
export { default as EditorWatchdog, type EditorCreatorFunction } from './editorwatchdog.js';
|
|
10
|
+
export { default as Watchdog, type WatchdogConfig } from './watchdog.js';
|
|
11
11
|
import './augmentation.js';
|