@sheetxl/models
Version:
Models - A Headless javascript spreadsheet library.
14 lines • 673 B
TypeScript
import { DrawingGraphicFrameJSON } from "./IDrawingModel";
import { AnchoredDrawingOptions, AbstractDrawing } from './DrawingModel';
/**
* The Drawing model for Graphic Frames.
* TODO - this should take a delegate to enable user customizations.
*/
export declare class DrawingGraphicFrameModel extends AbstractDrawing<DrawingGraphicFrameJSON> {
private _json;
constructor(options: AnchoredDrawingOptions<DrawingGraphicFrameJSON>);
protected _drawingTypeDescription(): string;
protected _toDrawingJSON(): DrawingGraphicFrameJSON;
protected _fromDrawingJSON(json: DrawingGraphicFrameJSON): void;
}
//# sourceMappingURL=DrawingGraphicFrameModel.d.ts.map