Skip to content

Instantly share code, notes, and snippets.

@nico-i
Created March 7, 2025 13:40
Show Gist options
  • Save nico-i/c0558df951f4690cbecd9aeb3710b7c9 to your computer and use it in GitHub Desktop.
Save nico-i/c0558df951f4690cbecd9aeb3710b7c9 to your computer and use it in GitHub Desktop.
Custom type for all valid i18next translation keys prefixed by their respective namespace.
import type { FlatNamespace, ParseKeys } from 'i18next';
export type AllI18nKeysWithNsPrefix = {
[Ns in FlatNamespace]: `${Ns}:${ParseKeys<Ns>}`;
}[FlatNamespace];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment