torque-pro-assistant - v1.0.0
    Preparing search index...

    Interface ToastOptions

    Input shape for the base toast(...) call. kind and duration default to info / 4000 ms. Pass duration: 0 or Infinity to pin the toast until the user dismisses it.

    interface ToastOptions {
        action?: ToastAction;
        duration?: number;
        kind?: ToastKind;
        subtitle?: string;
        title: string;
    }
    Index

    Properties

    action?: ToastAction
    duration?: number
    kind?: ToastKind
    subtitle?: string
    title: string