Presenter

public enum Presenter

Undocumented

Decoding

  • Undocumented

    Declaration

    Swift

    public static func decode(
        from data: Data,
        decoder: JSONDecoder = .init()
    ) throws -> some View
  • Undocumented

    Declaration

    Swift

    public static func decode<Decoder: TopLevelDecoder>(
        from data: Decoder.Input,
        decoder: Decoder
    ) throws -> some View

Encoding

  • Undocumented

    Declaration

    Swift

    public static func encode<V: View>(
        _ view: V,
        encoder: JSONEncoder = .init()
    ) throws -> Data
  • Undocumented

    Declaration

    Swift

    public static func encode<V: View, Encoder: TopLevelEncoder>(
        _ view: V,
        encoder: Encoder
    ) throws -> Encoder.Output

Plugins

  • Undocumented

    Declaration

    Swift

    public static func use<P>(plugin: P) where P : Plugin
  • Undocumented

    Declaration

    Swift

    public static func remove<P>(plugin: P) where P : Plugin

View

View Modifier

Model Action

  • Undocumented

    Declaration

    Swift

    public static func use<A>(action: A.Type) where A : Action
  • Undocumented

    Declaration

    Swift

    public static func remove<A>(action: A.Type) where A : Action