UNPKG

@inkline/inkline

Version:

Inkline is the intuitive UI Components library that gives you a developer-friendly foundation for building high-quality, accessible, and customizable Vue.js 3 Design Systems.

11 lines (10 loc) 364 B
import type { Plugin } from 'vue'; import type { InklineService } from '@inkline/inkline/plugin'; import type { ToastOptions } from '@inkline/inkline/types'; export interface InklineToastOptions { toast?: Partial<Omit<ToastOptions, 'id'>>; } export interface InklineToastPluginOptions { inkline: InklineService; } export declare const ToastPlugin: Plugin;