david-swift e989bea14e
All checks were successful
Deploy Docs / publish (push) Successful in 2m38s
Initial commit
2024-12-02 22:14:13 +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
}
}
}