(manifest: UpdateManifest, deviceId: string)
| 44 | } |
| 45 | |
| 46 | export function rolloutDelaySeconds(manifest: UpdateManifest, deviceId: string): number { |
| 47 | return rolloutDelayForBucket(manifest.rollout, rolloutBucket(deviceId, manifest.version)); |
| 48 | } |
| 49 | |
| 50 | export function isRolloutEligible( |
| 51 | manifest: UpdateManifest, |
no test coverage detected