@volverjs/ui-vue
Version:
@volverjs/ui-vue is a lightweight Vue 3 component library to accompany @volverjs/style.
64 lines (63 loc) • 2 kB
TypeScript
declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<globalThis.ExtractPropTypes<{
name: StringConstructor;
title: StringConstructor;
content: StringConstructor;
modelValue: {
type: BooleanConstructor;
default: undefined;
};
disabled: BooleanConstructor;
not: BooleanConstructor;
modifiers: {
type: PropType<string | string[]>;
default: undefined;
};
}>, {
isExpanded: globalThis.Ref<boolean, boolean>;
expand: () => void;
collapse: () => void;
groupExpand: (name?: string | string[]) => void;
groupCollapse: (name?: string | string[]) => void;
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
name: StringConstructor;
title: StringConstructor;
content: StringConstructor;
modelValue: {
type: BooleanConstructor;
default: undefined;
};
disabled: BooleanConstructor;
not: BooleanConstructor;
modifiers: {
type: PropType<string | string[]>;
default: undefined;
};
}>> & Readonly<{}>, {
disabled: boolean;
modelValue: boolean;
not: boolean;
modifiers: string | string[];
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
summary?: (props: {
isExpanded: boolean;
expand: () => void;
collapse: () => void;
groupExpand: (name?: string | string[]) => void;
groupCollapse: (name?: string | string[]) => void;
}) => any;
} & {
default?: (props: {
isExpanded: boolean;
expand: () => void;
collapse: () => void;
groupExpand: (name?: string | string[]) => void;
groupCollapse: (name?: string | string[]) => void;
}) => any;
}>;
declare const _default: typeof __VLS_export;
export default _default;
type __VLS_WithSlots<T, S> = T & {
new (): {
$slots: S;
};
};