UNPKG

iking-vue-hooks

Version:

金合Vue Hooks 事件监听hook

10 lines (9 loc) 316 B
import { Ref } from 'vue'; export interface AppProviderContextProps { prefixCls: Ref<string>; isMobile: Ref<boolean>; } export declare function createAppProviderContext(context: AppProviderContextProps): { state: any; }; export declare function useAppProviderContext(): AppProviderContextProps;