├── .gitignore ├── Example ├── App │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift └── TypedNotifications.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── TypedNotifications │ └── TypedNotification.swift ├── Tests └── TypedNotificationsTests │ └── TypedNotificationTests.swift └── TypedNotifications.podspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/TypedNotifications/HEAD/.gitignore -------------------------------------------------------------------------------- /Example/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/TypedNotifications/HEAD/Example/App/AppDelegate.swift -------------------------------------------------------------------------------- /Example/App/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/TypedNotifications/HEAD/Example/App/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/App/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/TypedNotifications/HEAD/Example/App/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/App/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/TypedNotifications/HEAD/Example/App/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/TypedNotifications/HEAD/Example/App/Info.plist -------------------------------------------------------------------------------- /Example/App/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/TypedNotifications/HEAD/Example/App/ViewController.swift -------------------------------------------------------------------------------- /Example/TypedNotifications.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/TypedNotifications/HEAD/Example/TypedNotifications.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/TypedNotifications.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/TypedNotifications/HEAD/Example/TypedNotifications.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/TypedNotifications.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/TypedNotifications/HEAD/Example/TypedNotifications.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/TypedNotifications/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/TypedNotifications/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/TypedNotifications/HEAD/README.md -------------------------------------------------------------------------------- /Sources/TypedNotifications/TypedNotification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/TypedNotifications/HEAD/Sources/TypedNotifications/TypedNotification.swift -------------------------------------------------------------------------------- /Tests/TypedNotificationsTests/TypedNotificationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/TypedNotifications/HEAD/Tests/TypedNotificationsTests/TypedNotificationTests.swift -------------------------------------------------------------------------------- /TypedNotifications.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mergesort/TypedNotifications/HEAD/TypedNotifications.podspec --------------------------------------------------------------------------------