import { UseInterceptors, applyDecorators } from "@nestjs/common"
import { ExcelDownloadInterceptor } from "../interceptors/excel-interceptor"

export const ExportExcel = (fileName: string) => {
  return applyDecorators(
    UseInterceptors(new ExcelDownloadInterceptor(fileName)),
  )
}
