chore: initialize my-pi extension bundle

This commit is contained in:
云服务部-叶林立
2026-08-18 12:30:48 +08:00
parent 7b7b332912
commit 0637139a16
62 changed files with 11055 additions and 1 deletions
+3
View File
@@ -0,0 +1,3 @@
export function toOnOff(value: boolean, truthyLabel = "on", falsyLabel = "off"): string {
return value ? truthyLabel : falsyLabel;
}