import { QNotifyCreateOptions, QBtnProps } from "quasar"; import { ButtonHTMLAttributes } from "vue"; export type QNotifyUpdateOptions = Omit< QNotifyCreateOptions, "group" | "position" >; export type QNotifyOptions = Omit; export type QNotifyAction = Omit & ButtonHTMLAttributes & { noDismiss?: boolean; handler?: () => void };