@solidrt/flux-types 0.0.28 → 0.0.30
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/package.json +1 -1
- package/standards/console.d.ts +2 -0
package/package.json
CHANGED
package/standards/console.d.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
// The web-standard `console` global. flux provides exactly these four methods
|
|
2
2
|
// (no info/trace/table/group/...). A global script file: these declarations
|
|
3
3
|
// stand in for the ones lib.dom would otherwise supply.
|
|
4
|
+
// Formatting: arguments joined by spaces; strings as-is, Error objects as
|
|
5
|
+
// `name: message` plus stack, other values JSON-stringified.
|
|
4
6
|
|
|
5
7
|
declare let console: {
|
|
6
8
|
debug(...args: any[]): void
|