export interface ProductDataGridSelectCallbackInterface { data: DataType | null; row: RowType; } export interface ProductDataGridPackageSelectCallbackInterface extends ProductDataGridSelectCallbackInterface { isDefaultSelection: boolean; } export interface ProductDataGridRowDataInterface { barcode?: string; goodsRef?: number; goodsCode?: string; goodsName?: string; isBatch?: boolean; batchNo?: string; batchRef?: number; packUnitRef?: number; packUnitName?: string; accYear?: number; }