mirror of
https://github.com/ajnart/homarr.git
synced 2026-01-19 22:12:15 +01:00
17 lines
240 B
TypeScript
17 lines
240 B
TypeScript
export interface ShapeType {
|
|
lg?: SizedShapeType;
|
|
md?: SizedShapeType;
|
|
sm?: SizedShapeType;
|
|
}
|
|
|
|
export interface SizedShapeType {
|
|
location: {
|
|
x: number;
|
|
y: number;
|
|
};
|
|
size: {
|
|
width: number;
|
|
height: number;
|
|
};
|
|
}
|