8 lines
164 B
Swift
8 lines
164 B
Swift
import Foundation
|
|
|
|
@objc
|
|
public protocol ReactMountingTransactionObserving {
|
|
func reactMountingTransactionWillMount()
|
|
func reactMountingTransactionDidMount()
|
|
}
|