19 lines
423 B
Swift
19 lines
423 B
Swift
//
|
|
// 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
|
|
/// The either view type.
|
|
public typealias EitherViewType = EitherView
|
|
|
|
}
|