@nextcloud/vue
Version:
Nextcloud vue components
43 lines (42 loc) • 1.36 kB
TypeScript
import { Slot } from 'vue';
type __VLS_Props = {
/**
* Display the group as a row instead of a column
*/
row?: boolean;
};
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: Readonly<{
/**
* Grouped content
*/
default?: Slot<{
/**
* Class to add on a custom item to apply the border radius effect
*/
itemClass: string;
}>;
}> & {
/**
* Grouped content
*/
default?: Slot<{
/**
* Class to add on a custom item to apply the border radius effect
*/
itemClass: string;
}>;
};
refs: {};
rootEl: HTMLDivElement;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};