Ian Riley 8ce0a67c81 refactor (test/services): Ts'ifying test/services
Translates AtScript files in test/services to TypeScript

Closes #2193
2015-05-28 09:48:38 -07:00

4 lines
99 B
TypeScript

export function createRectangle(left, top, width, height) {
return {left, top, width, height};
}