Files
angular-docs-cn/modules/@angular/platform-browser/test/browser/rectangle_mock.ts
T

6 lines
200 B
TypeScript
Raw Normal View History

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};
}