masto
Version:
Mastodon API client for JavaScript, TypeScript, Node.js, browsers
9 lines (8 loc) • 318 B
TypeScript
export interface Translation {
/** The translated text of the status. */
content: string;
/** The language of the source text, as auto-detected by the machine translation provider. */
detectedLanguageSource: string;
/** The service that provided the machine translation. */
provider: string;
}