@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
TypeScript
import type { Plugin } from 'vue';
import type { InklineService } from '@inkline/inkline/plugin';
import type { ModalOptions } from '@inkline/inkline/types';
export interface InklineModalOptions {
modal?: Partial<Omit<ModalOptions, 'id'>>;
}
export interface InklineModalPluginOptions {
inkline: InklineService;
}
export declare const ModalPlugin: Plugin;