Build the remote path for a device's changeset file
(deviceId: string)
| 67 | |
| 68 | /** Build the remote path for a device's changeset file */ |
| 69 | function deviceSyncPath(deviceId: string): string { |
| 70 | return `${SYNC_DIR}/device-${deviceId}.json`; |
| 71 | } |
| 72 | |
| 73 | interface DeviceSyncIndex { |
| 74 | version: 1; |
no outgoing calls
no test coverage detected