@nextcloud/vue
Version:
Nextcloud vue components
17 lines (16 loc) • 765 B
TypeScript
import { default as NcAppSidebarTab } from '../NcAppSidebarTab/NcAppSidebarTab.vue';
type __VLS_Props = {
/**
* The sidebar tab this button controls
*/
tab: InstanceType<typeof NcAppSidebarTab>;
};
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;