fix: carousel type declaration (#33109)

fix: CarouselRef["autoPlay"] is a method instead of a boolean value
This commit is contained in:
Qiuxu 2021-12-01 16:52:22 +08:00 committed by GitHub
parent 69da0de845
commit 9b46aa5133
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,7 +25,7 @@ export interface CarouselRef {
goTo: (slide: number, dontAnimate?: boolean) => void;
next: () => void;
prev: () => void;
autoPlay: boolean;
autoPlay: (palyType?: 'update' | 'leave' | 'blur') => void;
innerSlider: any;
}