@material-git/grid-list
Version:
Angular 2 Material grid list
20 lines (19 loc) • 600 B
TypeScript
import { MdError } from '@material-git/core';
/**
* Exception thrown when cols property is missing from grid-list
*/
export declare class MdGridListColsError extends MdError {
constructor();
}
/**
* Exception thrown when a tile's colspan is longer than the number of cols in list
*/
export declare class MdGridTileTooWideError extends MdError {
constructor(cols: number, listLength: number);
}
/**
* Exception thrown when an invalid ratio is passed in as a rowHeight
*/
export declare class MdGridListBadRatioError extends MdError {
constructor(value: string);
}