global.d.ts — vue Source File
Architecture documentation for global.d.ts, a typescript file in the vue codebase.
Entity Profile
Relationship Graph
Source Code
declare const __DEV__: boolean
declare const __TEST__: boolean
declare const __GLOBAL__: boolean
interface Window {
__VUE_DEVTOOLS_GLOBAL_HOOK__: DevtoolsHook
}
// from https://github.com/vuejs/vue-devtools/blob/bc719c95a744614f5c3693460b64dc21dfa339a8/packages/app-backend-api/src/global-hook.ts#L3
interface DevtoolsHook {
emit: (event: string, ...payload: any[]) => void
on: (event: string, handler: Function) => void
once: (event: string, handler: Function) => void
off: (event?: string, handler?: Function) => void
Vue?: any
// apps: AppRecordOptions[]
}
Domain
Subdomains
Functions
Classes
Types
Source
Frequently Asked Questions
What does global.d.ts do?
global.d.ts is a source file in the vue codebase, written in typescript. It belongs to the VueCore domain, GlobalAPI subdomain.
What functions are defined in global.d.ts?
global.d.ts defines 1 function(s): event.
Where is global.d.ts in the architecture?
global.d.ts is located at src/global.d.ts (domain: VueCore, subdomain: GlobalAPI, directory: src).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free