UNPKG

@gulibs/vgrove-ui

Version:

VGrove UI component library built with HeroUI and React

24 lines 920 B
import React from 'react'; interface OptimizedRedirectComponentProps { /** 重定向路径 */ redirectPath?: string; /** 重定向倒计时(秒) */ redirectCountdown?: number; /** 取消重定向的回调函数 */ onCancelRedirect?: () => void; /** 是否显示取消按钮 */ showCancelButton?: boolean; /** 是否显示进度条 */ showProgress?: boolean; /** 自定义标题 */ title?: React.ReactNode; /** 自定义描述 */ description?: React.ReactNode; /** 自定义图标 */ icon?: string; /** 自定义样式类名 */ className?: string; } export declare function OptimizedRedirectComponent({ redirectPath, redirectCountdown, onCancelRedirect, showCancelButton, showProgress, title, description, icon, className }: OptimizedRedirectComponentProps): React.JSX.Element; export {}; //# sourceMappingURL=OptimizedRedirectComponent.d.ts.map