2023-09-12 08:17:52 +02:00

15 lines
272 B
Swift

//
// StateProtocol.swift
// Adwaita
//
// Created by david-swift on 09.09.23.
//
/// An interface for accessing `State` without specifying the generic type.
public protocol StateProtocol {
/// The type-erased value.
var value: Any { get nonmutating set }
}