Skip to content

Instantly share code, notes, and snippets.

@ljmotta
Created August 12, 2020 18:37
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/8679e4b7d34e4fa94e4948af434982a5 to your computer and use it in GitHub Desktop.
Save ljmotta/8679e4b7d34e4fa94e4948af434982a5 to your computer and use it in GitHub Desktop.
interface MyDictionary extends ReferenceDictionary<MyDictionary> {
inputName: string;
welcome: (name: string) => string;
home: {
title: string;
body: string;
};
currentLocale: (locale: string) => string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment