mirror of
https://github.com/facebook/lexical.git
synced 2025-08-06 00:21:47 +08:00
30 lines
709 B
Plaintext
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;
|