6 lines
91 B
TypeScript
6 lines
91 B
TypeScript
export type Rect = {
|
|
x: number;
|
|
y: number;
|
|
width: number;
|
|
height: number;
|
|
} |