19 lines
317 B
Swift
19 lines
317 B
Swift
//
|
|
// StateProtocol.swift
|
|
// Meta
|
|
//
|
|
// Created by david-swift on 26.05.24.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
/// An interface for accessing `State` without specifying the generic type.
|
|
protocol StateProtocol {
|
|
|
|
/// The state content.
|
|
var content: StateContent { get }
|
|
/// Set the storage up.
|
|
func setup()
|
|
|
|
}
|