import { MiddlewareInterface } from '../../../interfaces/middleware.interface'; export interface GetTokensByAuthCodeInterface extends MiddlewareInterface { code: string; scope?: string; state?: string; }