// Размер
export interface ISize {

	// Ширина
	width: number;

	// Высота
	height: number;
}
