4 lines
99 B
TypeScript
4 lines
99 B
TypeScript
export function createRectangle(left, top, width, height) {
|
|
return {left, top, width, height};
|
|
}
|