@progress/kendo-vue-buttons
Version:
21 lines (20 loc) • 700 B
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
/**
* Represents the handle of the SmartPasteButton component.
*/
export interface SmartPasteButtonHandle {
/**
* The root DOM element of the SmartPasteButton.
*/
element: HTMLButtonElement | null;
/**
* Programmatically triggers a click on the SmartPasteButton.
*/
click: () => void;
}