UNPKG

devexpress-reporting

Version:

DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.

27 lines (26 loc) 917 B
/** * DevExpress HTML/JS Reporting (viewer\widgets\pictureEditor\_signaturePainter.d.ts) * Version: 20.2.13 * Build date: Apr 10, 2023 * Copyright (c) 2012 - 2023 Developer Express Inc. ALL RIGHTS RESERVED * License: https://www.devexpress.com/Support/EULAs/universal.xml */ import { Disposable } from '@devexpress/analytics-core/analytics-utils'; import * as ko from 'knockout'; export declare class SignaturePainter extends Disposable { dispose(): void; private _points; private _lastX; private _lastY; private _drawPath; private _drawCircle; private _drawAllPoints; drawCircle(context: any, x: any, y: any, color: any, width: any): void; drawPath(context: any, x: any, y: any, color: any, width: any): void; resetLastPosition(): void; resetPoints(): void; reset(): void; refresh(context: any): void; constructor(); hasPoints: ko.Computed<boolean>; }