summaryrefslogtreecommitdiffhomepage
path: root/src/global.d.ts
diff options
context:
space:
mode:
authorAdam Malczewski <[email protected]>2026-03-28 19:38:27 +0900
committerAdam Malczewski <[email protected]>2026-03-28 19:38:27 +0900
commitbffeac84cb7b3094f7a4b879b6bab6ceaec561ac (patch)
treedd9a5db2b815d83af0d3745c2ba4433b9f8595a7 /src/global.d.ts
parentab6d09df695c5cdfa21aa8005f00ebf2bd37df2b (diff)
downloadai-pulse-obsidian-plugin-bffeac84cb7b3094f7a4b879b6bab6ceaec561ac.tar.gz
ai-pulse-obsidian-plugin-bffeac84cb7b3094f7a4b879b6bab6ceaec561ac.zip
phase 1 calendar
Diffstat (limited to 'src/global.d.ts')
-rw-r--r--src/global.d.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/global.d.ts b/src/global.d.ts
new file mode 100644
index 0000000..bc5e7ae
--- /dev/null
+++ b/src/global.d.ts
@@ -0,0 +1,7 @@
+import type _moment from "moment";
+
+declare global {
+ interface Window {
+ moment: typeof _moment;
+ }
+}