this repo has no description

Re-export OAuth from CoreATProtocol

+31
+31
Sources/EffemKit/OAuth/EffemOAuth.swift
··· 1 + import Foundation 2 + @_exported import CoreATProtocol 3 + 4 + // MARK: - Re-export OAuth types from CoreATProtocol 5 + 6 + /// Re-export ATProtoOAuth as EffemOAuth for Effem-specific usage. 7 + public typealias EffemOAuth = ATProtoOAuth 8 + 9 + /// Re-export OAuth configuration. 10 + public typealias EffemOAuthConfig = ATProtoOAuthConfig 11 + 12 + /// Re-export OAuth storage. 13 + public typealias EffemAuthStorage = ATProtoAuthStorage 14 + 15 + /// Re-export OAuth result. 16 + public typealias EffemAuthResult = ATProtoAuthResult 17 + 18 + /// Re-export OAuth errors. 19 + public typealias EffemOAuthError = ATProtoOAuthError 20 + 21 + /// Re-export identity errors. 22 + public typealias EffemIdentityError = IdentityError 23 + 24 + /// Re-export user authenticator type. 25 + public typealias EffemUserAuthenticator = UserAuthenticator 26 + 27 + // MARK: - Re-export OAuthenticator types (already re-exported from CoreATProtocol) 28 + // Login, Token, and LoginStorage are already available via CoreATProtocol 29 + 30 + // MARK: - Re-export ErrorMessage 31 + public typealias EffemErrorMessage = ErrorMessage