svg-layout-designer-react/src/Interfaces/ISizePointer.ts

9 lines
264 B
TypeScript

/**
* A SizePointer is a pointer in a 1 dimensional array of width/space
* x being the address where the pointer is pointing
* width being the overall (un)allocated space affected to the address
*/
export interface ISizePointer {
x: number
width: number
}