![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/vreg/node_modules/bootstrap-vue/src/components/toast/ |
// // Toast // import Vue, { VNode } from 'vue' import { BvPlugin, BvComponent } from '../../' // Toast Plugin export declare const ToastPlugin: BvPlugin // Component: b-toast export declare class BToast extends BvComponent { show: () => void hide: () => void } // Component: b-toaster export declare class BToaster extends BvComponent {} // // Interfaces // export interface BvToastOptions { // Commonly used props toaster?: string title?: string | VNode | Array<VNode> variant?: string solid?: boolean noAutoHide?: boolean noHoverPause?: boolean autoHideDelay?: number noCloseButton?: boolean appendToast?: boolean isStatus?: boolean noFade?: boolean toastClass?: string | string[] | Array<any> | object | any headerClass?: string | string[] | Array<any> | object | any bodyClass?: string | string[] | Array<any> | object | any href?: string to?: string | object | any // Catch all [key: string]: any } export interface BvToastShortcutMethod { (message: string | VNode | Array<VNode>, options?: BvToastOptions): void // Future // (options?: BvToastOptions): void // (message: string | VNode | Array<VNode>, title: string | VNode | Array<VNode>, options?: BvToastOptions): void } export interface BvToast { // Show a toast toast: BvToastShortcutMethod // Show a toast by id show: (id: string) => void // Hide a toast by id (or hide all tosts) hide: (id?: string) => void } // // Vue Prototype Injections // declare module 'vue/types/vue' { interface Vue { // Toast injection readonly $bvToast: BvToast } }