vds_ios/VDS/Extensions/UIControl.swift
Matt Bruce 139d8fbce9 added success
updated config

Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2022-12-08 17:59:31 -06:00

15 lines
270 B
Swift

//
// UIControl.swift
// VDS
//
// Created by Matt Bruce on 12/8/22.
//
import Foundation
import UIKit
extension UIControl.State {
public static var error = UIControl.State(rawValue: 1 << 16)
public static var success = UIControl.State(rawValue: 1 << 17)
}