@opencloud-eu/design-system
Version:
OpenCloud Design System is used to design OpenCloud UI components
30 lines (29 loc) • 1.11 kB
TypeScript
import { Recipient } from '../../helpers';
export interface Props {
/**
* @docs The recipient object. Please refer to the component source for the `Recipient` type definition.
*/
recipient: Recipient;
}
export interface Slots {
/**
* @docs Append content for additional info.
*/
append?: () => unknown;
avatar?: () => unknown;
}
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: Readonly<Slots> & Slots;
refs: {};
rootEl: HTMLSpanElement;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLSpanElement>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};