import { Producto } from 'src/models';

export interface ProductosState {
  data: Producto | null;
  current: Producto | null;
  loading: boolean;
  loadingStats: boolean;
  list: Producto[];
  queryParams: QueryParams | null;
  count: number;
  stats: [];
  currentTab: string;
}

export interface QueryParams {
  startRow: number;
  fetchCount: number;
  sortBy: string;
  descending: boolean;
  bycol: any;
  filter: string;
  estado: number;
}
