@nghinv/react-native-app-tour
Version:
React Native app tour Library
21 lines (20 loc) • 617 B
TypeScript
/**
* Created by nghinv on Wed Jun 23 2021
* Copyright (c) 2021 nghinv@lumi.biz
*/
import React from 'react';
import type { AppTourType, OptionType, ScenesType } from './types';
interface AppTourProviderProps {
children: React.ReactNode;
options?: OptionType;
scenes: ScenesType;
sceneIndex?: number;
}
declare let AppTour: AppTourType;
declare function AppTourProvider(props: AppTourProviderProps): JSX.Element;
declare namespace AppTourProvider {
var defaultProps: {};
}
declare const _default: React.MemoExoticComponent<typeof AppTourProvider>;
export default _default;
export { AppTour, };