gh-EmergeTools-Pow/Sources/Pow/Infrastructure/Namespace.swift
Joe Fabisevich 5b95fe95b0
Moving Pow to @emergetools (#36)
Co-authored-by: Robert Böhnke <robb@robb.is>
Co-authored-by: Kasper Lahti <kasper@lahti.email>
2023-11-29 12:08:53 -03:00

24 lines
422 B
Swift

import SwiftUI
import AVFoundation
public extension Animation {
enum MovingParts {
}
/// The namespace of Moving Parts animations.
static var movingParts: MovingParts.Type {
MovingParts.self
}
}
public extension AnyTransition {
enum MovingParts {
}
/// The namespace of Moving Parts transitions.
static var movingParts: MovingParts.Type {
MovingParts.self
}
}