aboutsummaryrefslogtreecommitdiffstats
path: root/code/frontend/src/global.d.ts
blob: 13f5e1655a90189fd4030642d031ce1e46363b99 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
/// <reference types="@sveltejs/kit" />

type Locales = import('$lib/i18n/i18n-types').Locales
type TranslationFunctions = import('$lib/i18n/i18n-types').TranslationFunctions

declare namespace App {
    interface Locals {
        locale: Locales
        LL: TranslationFunctions
    }
}