UNPKG

@atlaskit/inline-edit

Version:

An inline edit displays a custom input component that switches between reading and editing on the same page.

5 lines (4 loc) 223 B
/// <reference types="react" /> import { type InlineEditProps } from './types'; declare const InlineEdit: <FieldValue extends unknown = string>(props: InlineEditProps<FieldValue>) => JSX.Element; export default InlineEdit;