From da51ad71f4eca463bb4562f658f908a8981c4911 Mon Sep 17 00:00:00 2001 From: "Rodrigo F. Fernandes" Date: Wed, 8 Mar 2017 19:14:59 -0300 Subject: [PATCH] Removed access modifier from properties Since properties are public by default, there's no need to specify the access modifier. --- node-powershell/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/node-powershell/index.d.ts b/node-powershell/index.d.ts index bdddd1a448..978d7e7c29 100644 --- a/node-powershell/index.d.ts +++ b/node-powershell/index.d.ts @@ -45,12 +45,12 @@ declare module 'node-powershell' { /** * An array containing the command history ever added to the shell instance. */ - public history: string[]; + history: string[]; /** * An object containing the sdtio (in,out,err) [stream.Readable] of the PowerShell Instance. */ - public streams: NodePowershell.ShellStream; + streams: NodePowershell.ShellStream; /** * Creates a new Shell instance.