mirror of
https://github.com/zhigang1992/react-native-card-stack-swiper.git
synced 2026-01-12 22:50:14 +08:00
chore: mark method as not optional
This commit is contained in:
16
index.d.ts
vendored
16
index.d.ts
vendored
@@ -26,14 +26,14 @@ export interface CardStackProps {
|
||||
|
||||
export default class CardStack extends React.Component<CardStackProps> {
|
||||
constructor(props: CardStackProps);
|
||||
swipeLeft?(): void;
|
||||
swipeRight?(): void;
|
||||
swipeBottom?(): void;
|
||||
swipeTop?(): void;
|
||||
goBackFromLeft?(): void;
|
||||
goBackFromRight?(): void;
|
||||
goBackFromBottom?(): void;
|
||||
goBackFromTop?(): void;
|
||||
swipeLeft(): void;
|
||||
swipeRight(): void;
|
||||
swipeBottom(): void;
|
||||
swipeTop(): void;
|
||||
goBackFromLeft(): void;
|
||||
goBackFromRight(): void;
|
||||
goBackFromBottom(): void;
|
||||
goBackFromTop(): void;
|
||||
}
|
||||
|
||||
export interface CardProps {
|
||||
|
||||
Reference in New Issue
Block a user