import { Request } from 'express';

// TODO: this can be removed?
// https://wanago.io/2021/03/08/api-nestjs-two-factor-authentication/
// https://www.fastify.io/docs/latest/Reference/Hooks/#using-hooks-to-inject-custom-properties
interface requestWithCsrfSecret extends Request {
  secret: string;
}

export default requestWithCsrfSecret;