export interface ItoastifyOffset { x?: number; y?: number; } export interface IToastify { oldestFirst?: boolean; text?: string; node?: HTMLElement | undefined; duration?: number; selector?: HTMLElement | undefined; destination?: string | undefined; newWindow?: boolean; close?: boolean; gravity?: 'top' | 'bottom'; positionLeft?: boolean; position?: 'left' | 'right' | 'center' | 'bottom'; backgroundColor?: string; avatar?: string; className?: string; stopOnFocus?: boolean; offset?: ItoastifyOffset; escapeMarkup?: boolean; ariaLive?: string; style?: any; onClick?: () => void; callback?: () => void; }