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

6 lines
200 B
TypeScript
Raw Normal View History

export function createRectangle(
left: any /** TODO #9100 */, top: any /** TODO #9100 */, width: any /** TODO #9100 */,
height: any /** TODO #9100 */) {
return {left, top, width, height};
}