Skip to content

Instantly share code, notes, and snippets.

@ljmotta
Last active August 2, 2021 13:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ljmotta/3e0448ee921382212551fb8973c2fd8f to your computer and use it in GitHub Desktop.
Save ljmotta/3e0448ee921382212551fb8973c2fd8f to your computer and use it in GitHub Desktop.
I18n Wrapped Example Dictionary
interface MyDictionary extends ReferenceDictionary {
// ...
dragFile: Array<string | Wrapped<"file" | "folder">>;
}
const en: MyDictionary {
// ...
dragFile: ["Drag the ", wrapped("file"), "to your ", wrapped("folder")];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment