@hydroperx/metro
    Preparing search index...

    Type Alias Tile

    type Tile = {
        color?: string;
        group?: string;
        icon?: string;
        iconSize?: TileIconSize;
        id: string;
        label?: string;
        labelColor?: string;
        livePages?: LiveTilePage[];
        size: TileSize;
        style?: TileStyle;
        x?: number;
        y?: number;
    }
    Index

    Properties

    color?: string

    Tile color. If undefined, displays a transparent tile.

    undefined
    
    group?: string

    Group to attach to.

    icon?: string

    Icon source.

    iconSize?: TileIconSize

    Tile's icon size.

    id: string

    Unique tile ID.

    label?: string

    Label.

    labelColor?: string

    Label color.

    livePages?: LiveTilePage[]

    List of HTML content for live tiles with rolling animation, each element of this array being a page of the tile.

    Note: this property may contain at most 2 elements.

    size: TileSize

    Tile size.

    style?: TileStyle

    Tile style.

    "normal"
    
    x?: number

    Horizontal position in small tile units. -1 (default) indicates last position.

    -1
    
    y?: number

    Vertical position in small tile units. -1 (default) indicates last position.

    -1