SImageLegendItem.d.ts 297 B

1234567
  1. import { Legend } from "../../types/topology/Legend";
  2. import { SGraphItem } from "@persagy-web/graph/lib";
  3. import { SIconTextItem } from "../SIconTextItem";
  4. export declare class SImageLegendItem extends SIconTextItem {
  5. data: Legend;
  6. constructor(parent: SGraphItem | null, data: Legend);
  7. }