diff options
Diffstat (limited to 'web/src/global.d.ts')
| -rw-r--r-- | web/src/global.d.ts | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/web/src/global.d.ts b/web/src/global.d.ts new file mode 100644 index 0000000..3b6d980 --- /dev/null +++ b/web/src/global.d.ts @@ -0,0 +1,9 @@ +import type Notive from "./index"; + +declare global { + interface Window { + notive: Notive; + } +} + +export {}; |
