blob: 075c69db41c60c5a8004a50e81b8ff166b1bca52 (
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 { }
}
|