-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
shim.d.ts
30 lines (29 loc) · 989 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
27
28
29
30
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_FEATURE_PRINT__: boolean
const __SLIDEV_FEATURE_WAKE_LOCK__: boolean
const __SLIDEV_HAS_SERVER__: boolean
}
declare module '@vue/runtime-core' {
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_FEATURE_PRINT__: boolean
__SLIDEV_FEATURE_WAKE_LOCK__: boolean
__SLIDEV_HAS_SERVER__: boolean
}
}