quasar
Version:
Build high-performance VueJS user interfaces (SPA, PWA, SSR, Mobile and Desktop) in record time
12 lines (9 loc) • 399 B
TypeScript
import { QNotifyCreateOptions, QBtnProps } from "quasar";
import { ButtonHTMLAttributes } from "vue";
export type QNotifyUpdateOptions = Omit<
QNotifyCreateOptions,
"group" | "position"
>;
export type QNotifyOptions = Omit<QNotifyCreateOptions, "ignoreDefaults">;
export type QNotifyAction = Omit<QBtnProps, "onClick"> &
ButtonHTMLAttributes & { noDismiss?: boolean; handler?: () => void };