UNPKG

mod-arch-shared

Version:

Shared library for modular architecture micro-frontend projects

12 lines 632 B
import * as React from 'react'; import { DashboardDescriptionListGroupProps } from '../components/DashboardDescriptionListGroup'; type EditableTextDescriptionListGroupProps = Pick<DashboardDescriptionListGroupProps, 'title' | 'contentWhenEmpty'> & { value: string; saveEditedValue: (value: string) => Promise<void>; baseTestId?: string; isArchive?: boolean; editableVariant: 'TextInput' | 'TextArea'; }; declare const EditableTextDescriptionListGroup: React.FC<EditableTextDescriptionListGroupProps>; export default EditableTextDescriptionListGroup; //# sourceMappingURL=EditableTextDescriptionListGroup.d.ts.map