# Interface OidcAccountsMethods

Interface
Module
import { OidcAccountsMethods } from "@tsed/oidc-provider"
Source/packages/security/oidc-provider/src/types/domain/OidcAccountsMethods.ts

# Overview

interface OidcAccountsMethods {
    findAccount(id: string, token: AuthorizationCode | AccessToken | DeviceCode | BackchannelAuthenticationRequest | undefined): Promise<Account | undefined>;
}

# Members

findAccount(id: string, token: AuthorizationCode | AccessToken | DeviceCode | BackchannelAuthenticationRequest | undefined): Promise<Account | undefined>;