All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
7 lines
697 B
TypeScript
7 lines
697 B
TypeScript
/// <reference types="react" />
|
|
declare const Bounce: ({ children, position, preventExitTransition, done, nodeRef, isIn }: import("..").ToastTransitionProps) => import("react").JSX.Element;
|
|
declare const Slide: ({ children, position, preventExitTransition, done, nodeRef, isIn }: import("..").ToastTransitionProps) => import("react").JSX.Element;
|
|
declare const Zoom: ({ children, position, preventExitTransition, done, nodeRef, isIn }: import("..").ToastTransitionProps) => import("react").JSX.Element;
|
|
declare const Flip: ({ children, position, preventExitTransition, done, nodeRef, isIn }: import("..").ToastTransitionProps) => import("react").JSX.Element;
|
|
export { Bounce, Slide, Zoom, Flip };
|