import { App } from 'vue'; import { $g } from './global'; import { $cookie } from './cookie'; import { $storage } from './storage'; import { $request } from './request'; import { $tools } from './tools'; declare module '@vue/runtime-core' { interface ComponentCustomProperties { $g: typeof $g; $tools: typeof $tools; $request: typeof $request; $cookie: typeof $cookie; $storage: typeof $storage; } } declare const _default: { install: (app: App) => App; }; export default _default;