6 lines
156 B
TypeScript
6 lines
156 B
TypeScript
|
export type AutoTranslateEndpoints = {
|
||
|
'autotranslate.translateMessage': {
|
||
|
POST: (params: { messageId: string; targetLanguage: string }) => void;
|
||
|
};
|
||
|
};
|