import { FrontCoverInterface, ProductInterface, ProductVariantInterface, ProductViewInterface, } from './index'; interface PdfGenerationRequestBodyInterface { frontCover: FrontCoverInterface; product: [ ProductInterface, ProductVariantInterface]; productViews: ProductViewInterface[]; singlePages: ProductViewInterface[]; } export default PdfGenerationRequestBodyInterface;