DeviceManagerUI.swift 465 B

12345678910111213141516171819
  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. import UIKit
  10. public protocol DeviceManagerUI: DeviceManager {
  11. /// An image representing a generalized device. Used during onboarding.
  12. static var onboardingImage: UIImage? { get }
  13. /// An image representing a device configuration after it is set up
  14. var smallImage: UIImage? { get }
  15. }