aboutsummaryrefslogtreecommitdiffstats
path: root/src/app.d.ts
blob: c6897369688fc9add87b0046286b7d913c4a84c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// See https://svelte.dev/docs/kit/types#app.d.ts
// for information about these interfaces

import Browser from 'webextension-polyfill';
declare const browser: typeof Browser;

declare global {
  namespace App {
    // interface Error {}
    // interface Locals {}
    // interface PageData {}
    // interface PageState {}
    // interface Platform {}
  }
}

export {};