Files
lexical/packages/lexical-react/flow/LexicalContentEditable.js.flow
2023-06-13 13:10:30 -04:00

30 lines
709 B
Plaintext

/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow strict
*/
import * as React from 'react';
export type Props = $ReadOnly<{
...Partial<HTMLDivElement>,
ariaActiveDescendant?: string,
ariaAutoComplete?: string,
ariaControls?: string,
ariaDescribedBy?: string,
ariaExpanded?: boolean,
ariaLabel?: string,
ariaLabelledBy?: string,
ariaMultiline?: boolean,
ariaOwns?: string,
ariaRequired?: boolean,
autoCapitalize?: boolean,
'data-testid'?: string | null,
...
}>;
declare export function ContentEditable(props: Props): React$Node;