17 lines
474 B
Swift
17 lines
474 B
Swift
//
|
|
// ItemEvents.swift
|
|
// RxCocoa
|
|
//
|
|
// Created by Krunoslav Zaher on 6/20/15.
|
|
// Copyright © 2015 Krunoslav Zaher. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import UIKit
|
|
|
|
#if os(iOS) || os(tvOS)
|
|
public typealias ItemMovedEvent = (sourceIndex: IndexPath, destinationIndex: IndexPath)
|
|
public typealias WillDisplayCellEvent = (cell: UITableViewCell, indexPath: IndexPath)
|
|
public typealias DidEndDisplayingCellEvent = (cell: UITableViewCell, indexPath: IndexPath)
|
|
#endif
|