forked from zelo72/mastodon-ios
chore: remove not not used typealias
This commit is contained in:
parent
09501cf2de
commit
018d646609
|
@ -9,9 +9,6 @@ import Foundation
|
|||
|
||||
extension Mastodon.Entity {
|
||||
|
||||
// FIXME: prefer `Account`. `User` will be deprecated
|
||||
public typealias User = Account
|
||||
|
||||
/// Account
|
||||
///
|
||||
/// - Since: 0.1.0
|
||||
|
@ -48,7 +45,7 @@ extension Mastodon.Entity {
|
|||
public let followersCount: Int
|
||||
public let followingCount: Int
|
||||
|
||||
public let moved: User?
|
||||
public let moved: Account?
|
||||
public let fields: [Field]?
|
||||
public let bot: Bool?
|
||||
public let source: Source?
|
||||
|
|
|
@ -32,7 +32,7 @@ extension Mastodon.Entity {
|
|||
public let statistics: Statistics?
|
||||
|
||||
public let thumbnail: String?
|
||||
public let contactAccount: User?
|
||||
public let contactAccount: Account?
|
||||
|
||||
enum CodingKeys: String, CodingKey {
|
||||
case uri
|
||||
|
|
|
@ -9,7 +9,6 @@ import Foundation
|
|||
|
||||
extension Mastodon.Entity {
|
||||
|
||||
// FIXME: prefer `Status`. `Toot` will be deprecated
|
||||
public typealias Toot = Status
|
||||
|
||||
/// Status
|
||||
|
|
Loading…
Reference in New Issue