2016-06-23 09:47:54 -07:00
|
|
|
/**
|
|
|
|
* @license
|
2020-05-19 12:08:49 -07:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2016-06-23 09:47:54 -07:00
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
2016-06-08 16:38:52 -07:00
|
|
|
export function createRectangle(
|
|
|
|
left: any /** TODO #9100 */, top: any /** TODO #9100 */, width: any /** TODO #9100 */,
|
|
|
|
height: any /** TODO #9100 */) {
|
2015-04-06 21:45:54 +02:00
|
|
|
return {left, top, width, height};
|
|
|
|
}
|