/** * this is similar to a function descriptor, but we need a lot less * information. not sure if we should composite them. */ export interface TranslatedFunctionDescriptor { /** original name (name in english), so we know what to replace. */ base: string; /** name (localized) */ name: string; /** description, if we have it. if not, show the english description? or nothing? dunno */ description?: string; /** argument names only */ arguments?: string[]; } export interface LanguageModel { name: string; version?: string; locale?: string; functions?: TranslatedFunctionDescriptor[]; boolean_true?: string; boolean_false?: string; }