refactor: more elements (#22095)

This commit is contained in:
Jason Rasmussen 2025-09-16 15:01:23 -04:00 committed by GitHub
parent 3f4b6a8e7c
commit 75322179fd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
25 changed files with 51 additions and 72 deletions

2
web/src/app.d.ts vendored
View file

@ -36,7 +36,7 @@ type NestedKeys<T, K = keyof T> = K extends keyof T & string
: never;
declare module 'svelte-i18n' {
import type { InterpolationValues } from '$lib/components/i18n/format-message.svelte';
import type { InterpolationValues } from '$lib/elements/format-message.svelte';
import type { Readable } from 'svelte/store';
type Translations = NestedKeys<typeof en>;