mirror of
https://github.com/youzan/vant.git
synced 2025-10-19 01:54:48 +00:00
15 lines
372 B
TypeScript
15 lines
372 B
TypeScript
import 'vue';
|
|
|
|
// TODO
|
|
// should be removed after Vue supported component events typing
|
|
// see: https://github.com/vuejs/vue-next/issues/1553
|
|
// https://github.com/vuejs/vue-next/issues/3029
|
|
declare module 'vue' {
|
|
interface ComponentCustomProps {
|
|
role?: string;
|
|
tabindex?: number;
|
|
onClick?: (event: MouseEvent) => void;
|
|
onClosed?: () => void;
|
|
}
|
|
}
|