UNPKG

nuxt-swal

Version:
11 lines (10 loc) 285 B
import type { FunctionalComponent } from 'vue'; type SwalPopupProps = { message: string; class?: string; }; type Events = { sendMessage(message: string): void; }; declare const SwalPopComponent: FunctionalComponent<SwalPopupProps, Events>; export default SwalPopComponent;