@@ -355,7 +355,7 @@ Trim the input's value.
355
355
Hashtable | String
356
356
#>
357
357
function Get-GitHubActionsInput {
358
- [CmdletBinding (DefaultParameterSetName = ' select' )][OutputType ([hashtable ], [string ])]
358
+ [CmdletBinding (DefaultParameterSetName = ' select' )][OutputType (( [hashtable ], [string ]) )]
359
359
param (
360
360
[Parameter (Mandatory = $true , ParameterSetName = ' select' , Position = 0 , ValueFromPipeline = $true )][SupportsWildcards ()][ValidatePattern (' ^.+$' )][Alias (' Key' , ' Keys' , ' Names' )][string []]$Name ,
361
361
[Parameter (ParameterSetName = ' select' )][Alias (' Required' )][switch ]$Require ,
@@ -454,7 +454,7 @@ Trim the state's value.
454
454
Hashtable | String
455
455
#>
456
456
function Get-GitHubActionsState {
457
- [CmdletBinding (DefaultParameterSetName = ' select' )][OutputType ([hashtable ], [string ])]
457
+ [CmdletBinding (DefaultParameterSetName = ' select' )][OutputType (( [hashtable ], [string ]) )]
458
458
param (
459
459
[Parameter (Mandatory = $true , ParameterSetName = ' select' , Position = 0 , ValueFromPipeline = $true )][SupportsWildcards ()][ValidatePattern (' ^.+$' )][Alias (' Key' , ' Keys' , ' Names' )][string []]$Name ,
460
460
[Parameter (ParameterSetName = ' all' )][switch ]$All ,
@@ -533,7 +533,7 @@ Specify that output is not enumerated; Setting this parameter causes arrays to b
533
533
Hashtable | PSCustomObject
534
534
#>
535
535
function Get-GitHubActionsWebhookEventPayload {
536
- [CmdletBinding ()][OutputType ([hashtable ], [pscustomobject ])]
536
+ [CmdletBinding ()][OutputType (( [hashtable ], [pscustomobject ]) )]
537
537
param (
538
538
[Alias (' ToHashtable' )][switch ]$AsHashtable ,
539
539
[int ]$Depth = 1024 ,
0 commit comments