Browse Source

fix: type of DebuggableOptions

e22m4u 2 months ago
parent
commit
426b82ba18
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/debuggable.d.ts

+ 3 - 3
src/debuggable.d.ts

@@ -5,9 +5,9 @@ import {Debugger} from './create-debugger.js';
  * Debuggable options.
  */
 export type DebuggableOptions = {
-  namespace: string,
-  noEnvironmentNamespace: boolean,
-  noInstantiationMessage: boolean,
+  namespace?: string,
+  noEnvironmentNamespace?: boolean,
+  noInstantiationMessage?: boolean,
 }
 
 /**