angular-cn/modules/angular2/test/services/rectangle_mock.dart
2015-04-08 11:04:42 +02:00

7 lines
128 B
Dart

import 'dart:html';
Rectangle createRectangle(left, top, width, height) {
return new Rectangle(left, top, width, height);
}