Interface DribbbleAuthResponse

interface DribbbleAuthResponse {
    accessToken: null | string;
    createdAt: null | number;
    error?: string;
    scope: string;
    tokenType: string;
}

Properties

accessToken: null | string
createdAt: null | number
error?: string
scope: string
tokenType: string