import { Response } from 'express';

interface NovaResponse extends Response {
    body?: any;
}

export type { NovaResponse };
