Skip to content

Commit

Permalink
feat: Get-Interpreter ( Fixes #747 )
Browse files Browse the repository at this point in the history
  • Loading branch information
StartAutomating authored and StartAutomating committed Feb 7, 2024
1 parent 956bfa3 commit f99622b
Showing 1 changed file with 61 additions and 0 deletions.
61 changes: 61 additions & 0 deletions docs/Get-Interpreter.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
Get-Interpreter
---------------

### Synopsis
Gets Interpreters

---

### Description

Gets PipeScript Interpreters

---

### Examples
> EXAMPLE 1
```PowerShell
Get-Interpreter
```
> EXAMPLE 2
```PowerShell
Get-Interpreter -LanguageName "JavaScript"
```

---

### Parameters
#### **LanguageName**
The name of one or more languages.

|Type |Required|Position|PipelineInput |
|------------|--------|--------|---------------------|
|`[String[]]`|false |named |true (ByPropertyName)|

#### **ArgumentList**
Any remaining arguments.

|Type |Required|Position|PipelineInput|Aliases |
|--------------|--------|--------|-------------|------------------------------|
|`[PSObject[]]`|false |named |false |Args<br/>Arguments<br/>ArgList|

#### **InputObject**
Any input object.

|Type |Required|Position|PipelineInput |
|------------|--------|--------|--------------|
|`[PSObject]`|false |named |true (ByValue)|

---

### Notes
This command accepts open-ended input.

---

### Syntax
```PowerShell
Get-Interpreter [-LanguageName <String[]>] [-ArgumentList <PSObject[]>] [-InputObject <PSObject>] [<CommonParameters>]
```

0 comments on commit f99622b

Please sign in to comment.