mod-arch-shared
Version:
Shared UI components and utilities for modular architecture micro-frontend projects
17 lines • 644 B
TypeScript
import React from 'react';
import { LabelProps } from '@patternfly/react-core';
interface EditableLabelsProps {
labels: string[];
onLabelsChange: (labels: string[]) => Promise<void>;
isArchive?: boolean;
title?: string;
contentWhenEmpty?: string;
allExistingKeys: string[];
labelProps?: LabelProps;
overflowCount?: number;
isCollapsible?: boolean;
onEditingChange?: (editingState: boolean) => void;
}
export declare const EditableLabelsDescriptionListGroup: React.FC<EditableLabelsProps>;
export default EditableLabelsDescriptionListGroup;
//# sourceMappingURL=EditableLabelsDescriptionListGroup.d.ts.map