@maxgraph/core
Version:
maxGraph is a fully client side JavaScript diagramming library that uses SVG and HTML for rendering.
20 lines (19 loc) • 440 B
TypeScript
/**
* Encapsulates the URL, width and height of an image.
*/
declare class ImageBox {
constructor(src: string, width: number, height: number);
/**
* String that specifies the URL of the image.
*/
src: string;
/**
* Integer that specifies the width of the image.
*/
width: number;
/**
* Integer that specifies the height of the image.
*/
height: number;
}
export default ImageBox;