mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-12 00:15:48 +01:00
11 lines
134 B
TypeScript
11 lines
134 B
TypeScript
export interface ShapeType {
|
|
location: {
|
|
x: number;
|
|
y: number;
|
|
};
|
|
size: {
|
|
width: number;
|
|
height: number;
|
|
};
|
|
}
|