public/Get-JiraRefreshTypes.ps1
|
function Get-JiraRefreshTypes { [CmdletBinding()] param ( ) begin { } process { @{ Full = "F" Differential = "D" } } end { } } |
|
function Get-JiraRefreshTypes { [CmdletBinding()] param ( ) begin { } process { @{ Full = "F" Differential = "D" } } end { } } |