RelationshipOptions
public struct RelationshipOptions : Codable
Options which relationships to show and how to style them in a class diagram
-
memberwise initializer
Declaration
Swift
public init(inheritance: Relationship? = Relationship(label: "inherits"), realize: Relationship? = Relationship(label: "conforms to"), dependency: Relationship? = Relationship(label: "ext"))
-
struct/class inherits from another struct/class
Declaration
Swift
public var inheritance: Relationship?
-
struct/class realizes protocol
Declaration
Swift
public var realize: Relationship?
-
struct/class has exension
Declaration
Swift
public var dependency: Relationship?