Add next button

This commit is contained in:
fragosti
2018-05-25 12:02:18 -07:00
parent e575323c60
commit b0e6ce581a
3 changed files with 13 additions and 2 deletions

View File

@@ -62,6 +62,7 @@ declare module 'react-joyride' {
steps?: Step[];
beaconComponent?: React.ReactNode;
disableOverlayClose?: boolean;
continuous?: boolean;
run?: boolean;
stepIndex?: number;
callback?: (data: CallbackData) => void;
@@ -70,7 +71,7 @@ declare module 'react-joyride' {
}
export interface State {
action: string;
action: 'prev' | 'close' | 'next';
controlled: boolean;
index: number;
lifecycle: string;