Variable access_token_response_body_successConst

access_token_response_body_success: TObject<
    {
        access_token: TString;
        expires_in: TOptional<TNumber>;
        me: TString;
        profile: TOptional<
            TObject<
                {
                    email: TOptional<TString>;
                    name: TString;
                    photo: TString;
                    url: TString;
                },
            >,
        >;
        refresh_token: TOptional<TString>;
        scope: TString;
        token_type: TLiteral<"Bearer">;
    },
> = ...