import { BaseSQLModel } from './BaseSQLModel'; export interface ShelfAndStorageCheck extends BaseSQLModel { productsIds: string[]; outOfShelfProductsIds: string[]; outOfStockProductsIds: string[]; ruptureProductsIds: string[]; }