Interface AuthenticationAccessToken

interface AuthenticationAccessToken {
    token: string;
    valid?: boolean;
    [key: string]: any;
}

Hierarchy

  • Record<string, any>
    • AuthenticationAccessToken

Indexable

  • [key: string]: any

Properties

Properties

token: string
valid?: boolean