/** * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ /** * @module table/commands/selectrowcommand */ import { Command, type Editor } from 'ckeditor5/src/core'; /** * The select row command. * * The command is registered by {@link module:table/tableediting~TableEditing} as the `'selectTableRow'` editor command. * * To select the rows containing the selected cells, execute the command: * * ```ts * editor.execute( 'selectTableRow' ); * ``` */ export default class SelectRowCommand extends Command { /** * @inheritDoc */ constructor(editor: Editor); /** * @inheritDoc */ refresh(): void; /** * @inheritDoc */ execute(): void; }