@eoussama/firemitt
    Preparing search index...

    Type Alias TDim

    Represents dimensions with width and height. This type is used to define the size of elements in terms of their width and height, measured in pixels.

    type TDim = {
        height: number;
        width: number;
    }
    Index

    Properties

    Properties

    height: number

    The height dimension in pixels.

    width: number

    The width dimension in pixels.