mirror of
https://github.com/onyx-and-iris/voicemeeter-api-powershell.git
synced 2026-04-18 05:23:32 +00:00
run through formatter
This commit is contained in:
@@ -8,7 +8,7 @@ class IStrip {
|
||||
}
|
||||
|
||||
[string] identifier () {
|
||||
return "Strip[" + $this.index + "]"
|
||||
return 'Strip[' + $this.index + ']'
|
||||
}
|
||||
|
||||
[single] Getter ($param) {
|
||||
@@ -135,7 +135,7 @@ class StripComp : IStrip {
|
||||
}
|
||||
|
||||
[string] identifier () {
|
||||
return "Strip[" + $this.index + "].Comp"
|
||||
return 'Strip[' + $this.index + '].Comp'
|
||||
}
|
||||
|
||||
hidden $_knob = $($this | Add-Member ScriptProperty 'knob' `
|
||||
@@ -155,7 +155,7 @@ class StripGate : IStrip {
|
||||
}
|
||||
|
||||
[string] identifier () {
|
||||
return "Strip[" + $this.index + "].Gate"
|
||||
return 'Strip[' + $this.index + '].Gate'
|
||||
}
|
||||
|
||||
hidden $_knob = $($this | Add-Member ScriptProperty 'knob' `
|
||||
@@ -174,7 +174,7 @@ class StripDenoiser : IStrip {
|
||||
}
|
||||
|
||||
[string] identifier () {
|
||||
return "Strip[" + $this.index + "].Denoiser"
|
||||
return 'Strip[' + $this.index + '].Denoiser'
|
||||
}
|
||||
|
||||
hidden $_knob = $($this | Add-Member ScriptProperty 'knob' `
|
||||
@@ -194,7 +194,7 @@ class StripEq : IStrip {
|
||||
}
|
||||
|
||||
[string] identifier () {
|
||||
return "Strip[" + $this.index + "].EQ"
|
||||
return 'Strip[' + $this.index + '].EQ'
|
||||
}
|
||||
}
|
||||
|
||||
@@ -203,7 +203,7 @@ class StripDevice : IStrip {
|
||||
}
|
||||
|
||||
[string] identifier () {
|
||||
return "Strip[" + $this.index + "].Device"
|
||||
return 'Strip[' + $this.index + '].Device'
|
||||
}
|
||||
|
||||
hidden $_name = $($this | Add-Member ScriptProperty 'name' `
|
||||
|
||||
Reference in New Issue
Block a user