From 0c825d7d55643739ce75203c3d5063c2d71cdeb0 Mon Sep 17 00:00:00 2001 From: RX14 Date: Mon, 1 Feb 2016 20:41:41 +0000 Subject: [PATCH] Update to winreg 0.0.16 --- winreg/winreg.d.ts | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) 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; } }