UNPKG

zmp-react

Version:

Build full featured iOS & Android apps using ZMP & React

18 lines (13 loc) 400 B
import * as React from 'react'; interface ToastPreloaderProps { slot?: string; id?: string | number; className?: string; style?: React.CSSProperties; visible?: boolean; text?: string; ref?: React.MutableRefObject<{el: HTMLElement | null;}>; children?: React.ReactNode; } declare const ToastPreloader: React.FunctionComponent<ToastPreloaderProps>; export default ToastPreloader;