diff --git a/types/react-notify-toast/index.d.ts b/types/react-notify-toast/index.d.ts index 1feb26ef61..ff4e52c616 100644 --- a/types/react-notify-toast/index.d.ts +++ b/types/react-notify-toast/index.d.ts @@ -23,8 +23,17 @@ declare class reactNotifyToast { createShowQueue(): reactNotifyToast; } +interface Options { + wrapperId?: string; + animationDuration?: number; + timeout?: number; + zIndex?: number; + top?: number | string; + colors?: any; +} + interface NotificationProps { - options: any; + options?: Options; } export class Notification extends React.Component {}