fix(TextEllipsis): fix missing param for toggle (#12483)

This commit is contained in:
Gavin 2023-12-04 20:19:36 +08:00 committed by GitHub
parent 3c3f96e268
commit 4d5de66362
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,7 @@ import type { ComponentPublicInstance } from 'vue';
import type { TextEllipsisProps } from './TextEllipsis';
export type TextEllipsisExpose = {
toggle: () => void;
toggle: (expanded?: boolean) => void;
};
export type TextEllipsisInstance = ComponentPublicInstance<