import { BodyInit } from 'node-fetch'; import AOAuth2Application from '../../lib/Authorization/Type/OAuth2/AOAuth2Application'; import { ApplicationInstall } from '../../lib/Application/Database/ApplicationInstall'; import Form from '../../lib/Application/Model/Form/Form'; import RequestDto from '../../lib/Transport/Curl/RequestDto'; import HttpMethods from '../../lib/Transport/HttpMethods'; import ProcessDto from '../../lib/Utils/ProcessDto'; export default class TestOAuth2Application extends AOAuth2Application { getAuthUrl: () => string; getDescription: () => string; getName: () => string; getPublicName: () => string; getRequestDto: (dto: ProcessDto, applicationInstall: ApplicationInstall, method: HttpMethods, url?: string, data?: BodyInit) => RequestDto; getSettingsForm: () => Form; getTokenUrl: () => string; getScopes: (applicationInstall: ApplicationInstall) => string[]; protected _getScopesSeparator: () => string; }