🐛 fix: incorrect storage size

This commit is contained in:
2026-06-09 00:38:07 +07:00
parent e64d2e6f1b
commit c4c66c0e8d
4 changed files with 13 additions and 11 deletions
+2 -2
View File
@@ -8,12 +8,12 @@ export interface DeviceStatus {
type: PacketType.DEVICE_STATUS;
/**
* Total storage capacity in kilobytes (KB)
* Total storage capacity in megabytes (MB)
*/
allspace: number;
/**
* Available free storage in kilobytes (KB)
* Available free storage in megabytes (MB)
*/
freespace: number;