neet/masto.js

View on GitHub
src/mastodon/entities/v1/translation.ts

Summary

Maintainability
A
0 mins
Test Coverage
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;
}