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