summaryrefslogtreecommitdiff
path: root/web/global.d.ts
blob: 3b6d98070467b6c382d25331d6ad1fcead66f13f (plain)
1
2
3
4
5
6
7
8
9
import type Notive from "./index";

declare global {
  interface Window {
    notive: Notive;
  }
}

export {};