17 lines
599 B
Swift
17 lines
599 B
Swift
//
|
||
// ContainerTypes.swift
|
||
// PatternsSwift
|
||
//
|
||
// Created by Рустам Мотыгуллин on 21/04/2020.
|
||
// Copyright © 2020 mrusta. All rights reserved.
|
||
//
|
||
|
||
import UIKit
|
||
|
||
public typealias TableAdapterCountCallback = () -> Int
|
||
public typealias TableAdapterCellIndexCallback = (_ index: Int) -> UITableViewCell
|
||
public typealias TableAdapterHeightIndexCallback = (_ index: Int) -> CGFloat
|
||
public typealias TableAdapterSelectIndexCallback = (_ index: Int) -> ()
|
||
public typealias TableAdapterDidScrollCallback = () -> ()
|
||
public typealias TableAdapterDeleteIndexCallback = (_ index: Int) -> ()
|