UNPKG

fant-mini-plus

Version:

fant-mini-plus是一个基于Vue3和TypeScript的uni-app高效UI组件库,提供丰富的组件和样式,帮助开发者快速构建高质量的移动应用。

15 lines (14 loc) 459 B
import { type InjectionKey, type Ref } from 'vue'; import type { Notify, NotifyOptions } from './types'; /** * 默认参数 */ export declare const defaultNotifyOptions: NotifyOptions; /** * useNotify 用到的key * * @internal */ export declare const notifyDefaultKey: InjectionKey<Ref<boolean>>; export declare const notifyDefaultOptionKey: InjectionKey<Ref<NotifyOptions>>; export declare function useNotify(selector?: string): Notify;