// Интерфейсы
import { ICellCache } from './cell-cache.interface';

// Кэшированная строка таблицы
export interface IRowCache {

	// Ячейки в строке
	[propName: string]: ICellCache;
}
