mod-arch-shared
Version:
Shared library for modular architecture micro-frontend projects
12 lines • 450 B
TypeScript
import React from 'react';
interface EditableLabelsProps {
labels: string[];
onLabelsChange: (labels: string[]) => Promise<void>;
isArchive?: boolean;
title?: string;
contentWhenEmpty?: string;
allExistingKeys: string[];
}
export declare const EditableLabelsDescriptionListGroup: React.FC<EditableLabelsProps>;
export default EditableLabelsDescriptionListGroup;
//# sourceMappingURL=EditableLabelsDescriptionListGroup.d.ts.map