forked from slidevjs/slidev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shim.d.ts
26 lines (25 loc) · 807 Bytes
/
shim.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
export {}
declare global {
const __DEV__: boolean
const __SLIDEV_HASH_ROUTE__: boolean
const __SLIDEV_CLIENT_ROOT__: string
const __SLIDEV_FEATURE_DRAWINGS__: boolean
const __SLIDEV_FEATURE_DRAWINGS_PERSIST__: boolean
const __SLIDEV_FEATURE_EDITOR__: boolean
const __SLIDEV_FEATURE_RECORD__: boolean
const __SLIDEV_FEATURE_PRESENTER__: boolean
const __SLIDEV_HAS_SERVER__: boolean
}
declare module 'vue' {
interface ComponentCustomProperties {
__DEV__: boolean
__SLIDEV_HASH_ROUTE__: boolean
__SLIDEV_CLIENT_ROOT__: string
__SLIDEV_FEATURE_DRAWINGS__: boolean
__SLIDEV_FEATURE_DRAWINGS_PERSIST__: boolean
__SLIDEV_FEATURE_EDITOR__: boolean
__SLIDEV_FEATURE_RECORD__: boolean
__SLIDEV_FEATURE_PRESENTER__: boolean
__SLIDEV_HAS_SERVER__: boolean
}
}