import { ExcelsheetData } from './excelsheet-data.dto'; export class ExcelData { filePath: string; sheetList: ExcelsheetData[] = []; addSheet(sheetData: ExcelsheetData) { this.sheetList.push(sheetData); } addSheetAt(sheetData: ExcelsheetData, position: number) { this.sheetList.splice(position, 0, sheetData); } }