//
//  LoaderPlugin.swift
//  Astro
//
//  Created by Jeremy Wiebe on 2015-06-02.
//  Copyright (c) 2015 Mobify Research & Development Inc. All rights reserved.
//

import Foundation

public protocol LoaderPlugin: ViewPlugin {
    func show(animated: Bool, completion: ((Bool) -> Void)?)
    func hide(animated: Bool, completion: ((Bool) -> Void)?)
    func setURL(_ url: URL)
}

extension LoaderPlugin {
    public func setURL(_ url: URL) {} //Defult implementation
}
