mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
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:
parent
b6701c86cf
commit
da51ad71f4
4
node-powershell/index.d.ts
vendored
4
node-powershell/index.d.ts
vendored
@ -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.
|
||||
|
||||
Loading…
Reference in New Issue
Block a user