Type Alias HonuaAuthEvent

HonuaAuthEvent:
    | {
        credential: StoredCredential;
        type: "signed-in";
    }
    | {
        credential: StoredCredential;
        type: "token-refreshed";
    }
    | {
        error: HonuaAuthError;
        type: "refresh-failed";
    }
    | {
        type: "signed-out";
    }

Lifecycle events emitted by the OAuth2 / client-credentials providers.