debug-fabulous 2.0.56 → 2.0.57

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.
@@ -4,14 +4,14 @@ export interface DebugLazy extends Debug {
4
4
  }
5
5
  export interface DebugFabulous extends DebugLazy {
6
6
  (namespace: string): DebuggerExt;
7
- spawnable: (_namespace: string, _debugFabFactory?: Debug) => DebuggerExtSpawn;
7
+ spawnable: (namespace: string, debugFabFactory?: Debug) => DebuggerExtSpawn;
8
8
  }
9
9
  export type LazyDebugFunc = () => string | any[];
10
10
  export interface DebuggerExt extends Debugger {
11
11
  (lazyFunc: LazyDebugFunc): void;
12
12
  (...args: any[]): void;
13
- spawn: (ns: string) => DebuggerExt;
13
+ spawn: (namespace: string) => DebuggerExt;
14
14
  }
15
15
  export interface DebuggerExtSpawn extends DebuggerExt {
16
- spawn: (ns: string) => DebuggerExt;
16
+ spawn: (namespace: string) => DebuggerExt;
17
17
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "debug-fabulous",
3
- "version": "2.0.56",
3
+ "version": "2.0.57",
4
4
  "description": "visionmedia debug extensions rolled into one",
5
5
  "keywords": [
6
6
  "debug",