Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/js/ui/text-editor/src/debug/
Upload File :
Current File : /var/www/homesaver/www/bitrix/js/ui/text-editor/src/debug/print-table-selection.js

import { type TableSelection } from 'ui.lexical.table';

export function printTableSelection(selection: TableSelection): string
{
	return `: table\n  └ { table: ${selection.tableKey}, anchorCell: ${selection.anchor.key}, focusCell: ${selection.focus.key} }`;
}