macbackend/Sources/Core/Model/Extensions/Meta.Binding.swift
david-swift 3d2ef52cc8
Some checks failed
Deploy Docs / publish (push) Successful in 3m4s
SwiftLint / SwiftLint (push) Failing after 9s
Extract core target
2024-12-04 21:17:21 +01:00

23 lines
336 B
Swift

//
// Meta.Binding.swift
// MacBackend
//
// Created by david-swift on 29.11.2024.
//
import SwiftUI
extension Meta.Binding {
/// The SwiftUI binding.
public var swiftUI: SwiftUI.Binding<Value> {
.init {
wrappedValue
} set: { newValue in
wrappedValue = newValue
}
}
}