15 lines
216 B
Swift
15 lines
216 B
Swift
//
|
|
// Binding.swift
|
|
// Subtasks
|
|
//
|
|
|
|
import Adwaita
|
|
|
|
extension Binding: CustomStringConvertible where Value: CustomStringConvertible {
|
|
|
|
public var description: String {
|
|
wrappedValue.description
|
|
}
|
|
|
|
}
|