|
//
// ToastAnimator.swift
// PaiaiUIKit
//
// Created by ffib on 2019/1/21.
// Copyright © 2019 yb. All rights reserved.
//
import Foundation
public protocol ToastAnimator {
func toastIn(in view: UIView, completion: ((Bool) -> Void)?)
func toastOut(in view: UIView, completion: ((Bool) -> Void)?)
}
|