UNPKG

ngx-mat-lib

Version:

A bunch of utilities and components to use in your Angular 7+ apps!

16 lines (15 loc) 495 B
import { XmatLegendItemContentComponent } from "./xmat-legend-item-content.component"; export interface XmatLegendItem { image?: string; color?: string; className?: string | string[]; content: string | XmatLegendItemContentComponent; } export declare type XmatLegendLayout = "grid" | "list"; export declare class XmatLegendLayouts { static GRID: XmatLegendLayout; static LIST: XmatLegendLayout; } export interface XmatLegendItemStyle { flex: string; }