@nextcloud/vue
Version:
Nextcloud vue components
22 lines (21 loc) • 972 B
TypeScript
import { default as NcAppSidebarTab } from '../NcAppSidebarTab/NcAppSidebarTab.vue';
type __VLS_Props = {
/**
* The sidebar tab this button controls
*/
tab: InstanceType<typeof NcAppSidebarTab>;
/**
* Whether the parent tablist renders a sliding highlight. When set, the
* button drops its own hover background so only the moving highlight shows.
*/
animatedHighlight?: boolean;
};
type __VLS_PublicProps = {
'selected': boolean;
} & __VLS_Props;
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
"update:selected": (value: boolean) => any;
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
"onUpdate:selected"?: ((value: boolean) => any) | undefined;
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLButtonElement>;
export default _default;