UNPKG

@progress/kendo-vue-editor

Version:
25 lines (24 loc) 1.01 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'; export interface ListToolProps extends ToolProps { } export interface OrderedListProps extends ListToolProps { } export interface UnorderedListProps extends ListToolProps { } /** * @hidden */ declare const List: import('vue').DefineComponent<{}, {}, {}, {}, { handleClick(): void; preventDefault(e: any): void; }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {} | { [x: string]: any; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { List };