File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -35,12 +35,10 @@ export type RegistryKey = {
35
35
} ;
36
36
37
37
/**
38
- * The `winreglib` API and debug log emitter.
39
- *
40
- * @type {EventEmitter }
41
- * @emits {log} Emits a debug log message.
38
+ * Loads the `winreglib` native module and provides an API for interacting
39
+ * with the Windows registry.
42
40
*/
43
- class WinRegLib extends EventEmitter {
41
+ export class WinRegLib extends EventEmitter {
44
42
nss : Record < string , Logger > = { } ;
45
43
46
44
constructor ( ) {
@@ -108,4 +106,10 @@ class WinRegLib extends EventEmitter {
108
106
}
109
107
}
110
108
109
+ /**
110
+ * The `winreglib` API and debug log emitter.
111
+ *
112
+ * @type {EventEmitter }
113
+ * @emits {log} Emits a debug log message.
114
+ */
111
115
export default new WinRegLib ( ) ;
You can’t perform that action at this time.
0 commit comments