21 lines
404 B
Swift
21 lines
404 B
Swift
//
|
|
// Copyright Amazon.com Inc. or its affiliates.
|
|
// All Rights Reserved.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public protocol AuthSignOutOperation: AmplifyOperation<
|
|
AuthSignOutRequest,
|
|
Void,
|
|
AuthError
|
|
> {}
|
|
|
|
public extension HubPayload.EventName.Auth {
|
|
|
|
/// eventName for HubPayloads emitted by this operation
|
|
static let signOutAPI = "Auth.signOutAPI"
|
|
}
|