Rocket.Chat.ReactNative/app/definitions/rest/v1/autotranslate.ts

6 lines
156 B
TypeScript
Raw Normal View History

export type AutoTranslateEndpoints = {
'autotranslate.translateMessage': {
POST: (params: { messageId: string; targetLanguage: string }) => void;
};
};