Removed access modifier from properties

Since properties are public by default, there's no need to specify
the access modifier.
This commit is contained in:
Rodrigo F. Fernandes 2017-03-08 19:14:59 -03:00
parent b6701c86cf
commit da51ad71f4

View File

@ -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.