@monkey2582/thinconsole 1.4.1 → 1.4.3
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/en.thinConsole.min.js +1 -1
- package/package.json +1 -1
- package/thinConsole.d.ts +3 -1
- package/thinConsole.min.js +1 -1
package/package.json
CHANGED
package/thinConsole.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* thinConsole - A lightweight web debugging console
|
|
3
|
-
* @version 1.4.
|
|
3
|
+
* @version 1.4.3
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
declare namespace thinConsole {
|
|
@@ -45,6 +45,8 @@ declare namespace thinConsole {
|
|
|
45
45
|
pluginOption?: Record<string, object>;
|
|
46
46
|
/** Custom log filters (default null = builtin) */
|
|
47
47
|
filters?: FilterConfig[] | null;
|
|
48
|
+
/** Enable element comments (default true) */
|
|
49
|
+
showComments?: boolean;
|
|
48
50
|
}
|
|
49
51
|
|
|
50
52
|
/** Storage backend interface (local / session / cookie) */
|