diff --git a/winreg/winreg.d.ts b/winreg/winreg.d.ts index 459a6e780..0b23f6981 100644 --- a/winreg/winreg.d.ts +++ b/winreg/winreg.d.ts @@ -1,4 +1,4 @@ -// Type definitions for Winreg v0.0.15 +// Type definitions for Winreg v0.0.16 // Project: https://github.com/fresc81/node-winreg/ // Definitions by: RX14 // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped @@ -122,6 +122,12 @@ interface Winreg { */ path: string; + /** + * Architecture this key belongs to. + * @readonly + */ + arch: string; + /** * A new Winreg instance of the parent key. * @readonly @@ -198,7 +204,12 @@ declare namespace Winreg { /** * Optional key, default is the root key. */ - key?: String; + key?: string; + + /** + * Optional architecture of the registry. + */ + arch?: string; } /** @@ -240,6 +251,12 @@ declare namespace Winreg { * @readonly */ value: string; + + /** + * Architecture this value belongs to. + * @readonly + */ + arch: string; } }