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

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

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

    // interface Platform { }
}