term-kit-backend/Sources/TermKitBackend/Model/TermKitMainView.swift

19 lines
423 B
Swift
Raw Normal View History

2024-07-18 16:07:37 +02:00
//
// TermKitMainView.swift
// TermKitBackend
//
// Created by david-swift on 13.07.2024.
//
/// The type of widgets of the TermKit backend.
public enum TermKitMainView: ViewRenderData {
/// The type of the widgets.
public typealias WidgetType = TermKitWidget
/// The wrapper type.
public typealias WrapperType = VStack
2024-08-25 16:42:55 +02:00
/// The either view type.
public typealias EitherViewType = EitherView
2024-07-18 16:07:37 +02:00
}