Files
2021-06-03 17:59:25 +06:00

18 lines
407 B
Swift

//
// ViewBuilder.swift
// Privado
//
// Created by Juraldinio on 11/5/19.
// Copyright © 2019 Omicronmedia. All rights reserved.
//
import Foundation
import UIKit
protocol ViewModuleControllerType: AnyObject {
func present(_ viewControllerToPresent: UIViewController, animated flag: Bool, completion: (() -> Void)?)
}
typealias ViewModuleBuilderClosure = (ViewModuleControllerType?) -> UIView