@opencloud-eu/design-system
Version:
OpenCloud Design System is used to design OpenCloud UI components
13 lines (12 loc) • 606 B
TypeScript
interface DefinitionItem {
term: string;
definition: string;
}
export interface Props {
/**
* @docs List of items to be displayed. Please refer to the component source for the `DefinitionItem` type definition.
*/
items: DefinitionItem[];
}
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDListElement>;
export default _default;