TabHistoryEntry

public struct TabHistoryEntry : Equatable, Hashable
extension TabHistoryEntry: Sendable

A received tab. Mis-named as the original intent was to keep the full “back” history for a tab, where this would be one such entry - but that never happened.

  • Declaration

    Swift

    public var title: String
  • url

    Declaration

    Swift

    public var url: String
  • Declaration

    Swift

    public var isPrivate: Bool
  • Declaration

    Swift

    public init(title: String, url: String, isPrivate: Bool = false)