chore: remove int in favor for number

Closes #3511
This commit is contained in:
Misko Hevery
2015-08-20 16:25:34 -07:00
parent 8336881a85
commit b986c54079
22 changed files with 95 additions and 93 deletions

View File

@ -302,13 +302,13 @@ export class MdGridTile {
*/
class TileCoordinator {
// Tracking array (see class description).
tracker: List<int>;
tracker: List<number>;
// Index at which the search for the next gap will start.
columnIndex: int;
columnIndex: number;
// The current row index.
rowIndex: int;
rowIndex: number;
// The computed (row, col) position of each tile (the output).
positions: List<Position>;