mirror of
https://github.com/pointfreeco/swift-composable-architecture.git
synced 2025-12-14 20:35:56 +01:00
12 lines
407 B
Swift
12 lines
407 B
Swift
import Foundation
|
|
import IssueReporting
|
|
|
|
extension Notification.Name {
|
|
@_documentation(visibility: private)
|
|
@available(*, deprecated, renamed: "_runtimeWarning")
|
|
public static let runtimeWarning = Self("ComposableArchitecture.runtimeWarning")
|
|
|
|
/// A notification that is posted when a runtime warning is emitted.
|
|
public static let _runtimeWarning = Self("ComposableArchitecture.runtimeWarning")
|
|
}
|