18 lines
407 B
Swift
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
|