TablePlugin feature: cell merge (#4343)

This commit is contained in:
Gerard Rovira
2023-04-18 16:12:29 +01:00
committed by GitHub
parent 601741046f
commit 2b47f771b2
6 changed files with 253 additions and 15 deletions

View File

@ -7,4 +7,7 @@
* @flow strict
*/
declare export function TablePlugin(): null;
type Props = $ReadOnly<{
hasCellMerge?: boolean,
}>;
declare export function TablePlugin(props: Props): null;