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