UNPKG

@progress/kendo-vue-editor

Version:
103 lines (102 loc) 3.37 kB
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { ToolProps } from './ToolProps'; import { TableEditNS } from './tableEdit'; import { PrintProps as PrintToolProps } from './print'; import { PdfProps as PdfToolProps } from './pdf'; import { FindAndReplaceProps as FindAndReplaceToolProps } from './findReplace'; /** * Represents a wrapping namespace for the tool components, props, and functions of the Editor. */ export declare namespace EditorTools { /** * The props for the Align tool component of the Editor. */ interface AlignToolProps extends ToolProps { } /** * The props for the AlignLeft tool component of the Editor. */ interface AlignLeftProps extends AlignToolProps { } /** * The props for the AlignRight tool component of the Editor. */ interface AlignRightProps extends AlignToolProps { } /** * The props for the AlignCenter tool component of the Editor. */ interface AlignCenterProps extends AlignToolProps { } /** * The props for the AlignJustify tool component of the Editor. */ interface AlignJustifyProps extends AlignToolProps { } /** * The props for the Print tool component of the Editor. */ interface PrintProps extends PrintToolProps { } /** * The props for the Export to PDF tool component of the Editor. */ interface PdfProps extends PdfToolProps { } /** * The props for the AddRowBefore tool component of the Editor. */ interface AddRowBeforeProps extends TableEditNS.AddRowBeforeProps { } /** * The props for the AddRowAfter tool component of the Editor. */ interface AddRowAfterProps extends TableEditNS.AddRowAfterProps { } /** * The props for the AddColumnBefore tool component of the Editor. */ interface AddColumnBeforeProps extends TableEditNS.AddColumnBeforeProps { } /** * The props for the AddColumnAfter tool component of the Editor. */ interface AddColumnAfterProps extends TableEditNS.AddColumnAfterProps { } /** * The props for the DeleteRow tool component of the Editor. */ interface DeleteRowProps extends TableEditNS.DeleteRowProps { } /** * The props for the DeleteColumn tool component of the Editor. */ interface DeleteColumnProps extends TableEditNS.DeleteColumnProps { } /** * The props for the DeleteTable tool component of the Editor. */ interface DeleteTableProps extends TableEditNS.DeleteTableProps { } /** * The props for the MergeCells tool component of the Editor. */ interface MergeCellsProps extends TableEditNS.MergeCellsProps { } /** * The props for the SplitCell tool component of the Editor. */ interface SplitCellProps extends TableEditNS.SplitCellProps { } /** * The props for the FindAndReplace tool component of the Editor. */ interface FindAndReplaceProps extends FindAndReplaceToolProps { } }