Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
PSKoans
0.50.0
DummyTypes.ps1
# Only attempt to load dummy types if they're not already present in the session
switch
(
$null
)
{
(
'FillerType'
-as
[type]
)
{
class
FillerType
{
}
}
(
'__'
-as
[type]
)
{
class
__
:
FillerType
{
}
}
}