19 lines
436 B
Swift
19 lines
436 B
Swift
//
|
|
// ViewRenderData.swift
|
|
// Meta
|
|
//
|
|
// Created by david-swift on 13.07.24.
|
|
//
|
|
|
|
/// Information about the widget and wrapper types.
|
|
public protocol ViewRenderData {
|
|
|
|
/// The type of widget elements (which should be backend-specific).
|
|
associatedtype WidgetType
|
|
/// The wrapper widget.
|
|
associatedtype WrapperType: Wrapper
|
|
/// The type replacing dummy either views.
|
|
associatedtype EitherViewType: EitherView
|
|
|
|
}
|