aboutsummaryrefslogtreecommitdiff
path: root/web/ui/src/app.d.ts
blob: f609a0b42d192118f4ff87e0d6bc97fdf1550b27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// See https://kit.svelte.dev/docs/types#app

import type { Account } from '$lib/server/db';

declare global {
  namespace App {
    interface Locals {
      account: Account | null;
    }
    // interface PageData {}
    // interface PageState {}
    // interface Platform {}
  }
}

export {};