You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.3 KiB
41 lines
1.3 KiB
import type { PropType } from 'vue';
|
|
import type { CollapseProvider } from './collapse.type';
|
|
declare const _default: import("vue").DefineComponent<{
|
|
title: {
|
|
type: StringConstructor;
|
|
default: string;
|
|
};
|
|
name: {
|
|
type: PropType<string | number>;
|
|
default: () => number;
|
|
};
|
|
disabled: BooleanConstructor;
|
|
}, {
|
|
isActive: import("vue").ComputedRef<boolean>;
|
|
contentWrapStyle: import("vue").Ref<{
|
|
height: string;
|
|
display: string;
|
|
}>;
|
|
contentHeight: import("vue").Ref<number>;
|
|
focusing: import("vue").Ref<boolean>;
|
|
isClick: import("vue").Ref<boolean>;
|
|
id: import("vue").Ref<number>;
|
|
handleFocus: () => void;
|
|
handleHeaderClick: () => void;
|
|
handleEnterClick: () => void;
|
|
collapse: CollapseProvider | undefined;
|
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
title?: unknown;
|
|
name?: unknown;
|
|
disabled?: unknown;
|
|
} & {
|
|
disabled: boolean;
|
|
name: string | number;
|
|
title: string;
|
|
} & {}>, {
|
|
disabled: boolean;
|
|
name: string | number;
|
|
title: string;
|
|
}>;
|
|
export default _default;
|