File

src/lib/toast/simple-notifications/interfaces/options.type.ts

Properties

animate
animate: "fromRight" | "fromLeft" | "rotate" | "scale"
Type : "fromRight" | "fromLeft" | "rotate" | "scale"
clickToClose
clickToClose: boolean
Type : boolean
icons
icons: Icons
Type : Icons
lastOnBottom
lastOnBottom: boolean
Type : boolean
maxLength
maxLength: number
Type : number
maxStack
maxStack: number
Type : number
pauseOnHover
pauseOnHover: boolean
Type : boolean
position
position: ["top" | "bottom", "right" | "left"]
Type : ["top" | "bottom", "right" | "left"]
preventDuplicates
preventDuplicates: number
Type : number
preventLastDuplicates
preventLastDuplicates: string | boolean
Type : string | boolean
rtl
rtl: boolean
Type : boolean
showProgressBar
showProgressBar: boolean
Type : boolean
theClass
theClass: string
Type : string
timeOut
timeOut: number
Type : number
import {Icons} from './icons';

export interface Options {
    timeOut?: number;
    showProgressBar?: boolean;
    pauseOnHover?: boolean;
    lastOnBottom?: boolean;
    clickToClose?: boolean;
    maxLength?: number;
    maxStack?: number;
    preventDuplicates?: number;
    preventLastDuplicates?: boolean | string;
    theClass?: string;
    rtl?: boolean;
    animate?: 'fromRight' | 'fromLeft' | 'rotate' | 'scale';
    icons?: Icons;
    position?: ['top' | 'bottom', 'right' | 'left'];
}

results matching ""

    No results matching ""