DeviceManagerUI.swift 452 B

123456789101112131415161718
  1. //
  2. // DeviceManagerUI.swift
  3. // LoopKitUI
  4. //
  5. // Created by Rick Pasetto on 6/30/20.
  6. // Copyright © 2020 LoopKit Authors. All rights reserved.
  7. //
  8. import LoopKit
  9. public protocol DeviceManagerUI: DeviceManager {
  10. /// An image representing a generalized device. Used during onboarding.
  11. static var onboardingImage: UIImage? { get }
  12. /// An image representing a device configuration after it is set up
  13. var smallImage: UIImage? { get }
  14. }