19 lines
405 B
Swift
19 lines
405 B
Swift
//
|
|
// MacMainView.swift
|
|
// MacBackend
|
|
//
|
|
// Created by david-swift on 31.07.2024.
|
|
//
|
|
|
|
/// The type of widgets of the macOS backend.
|
|
public enum MacMainView: ViewRenderData {
|
|
|
|
/// The type of the widgets.
|
|
public typealias WidgetType = MacWidget
|
|
/// The wrapper type.
|
|
public typealias WrapperType = VStack
|
|
/// The either view type.
|
|
public typealias EitherViewType = EitherView
|
|
|
|
}
|