stupa-pdf-api/frontend/node_modules/@mui/x-data-grid/models/elementSize.d.ts

14 lines
237 B
TypeScript

/**
* The size of a container.
*/
export interface ElementSize {
/**
* The height of a container or HTMLElement.
*/
height: number;
/**
* The width of a container or HTMLElement.
*/
width: number;
}