mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
6 lines
128 B
Dart
6 lines
128 B
Dart
import 'dart:html';
|
|
|
|
Rectangle createRectangle(left, top, width, height) {
|
|
return new Rectangle(left, top, width, height);
|
|
}
|
|
|