Skip to content

Commit

Permalink
fix: Svelte types (#3395)
Browse files Browse the repository at this point in the history
  • Loading branch information
brahma-dev authored Nov 1, 2024
1 parent 9f57cda commit e68d606
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/svelte/src/lib/T.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
export let keyName: TranslationKey;
export let params: Record<string, unknown> | undefined = undefined;
export let noWrap = false;
export let defaultValue = undefined;
export let defaultValue: string | undefined = undefined;
export let ns: NsType = undefined;
export let language: string = undefined;
Expand Down

0 comments on commit e68d606

Please sign in to comment.