This commit is contained in:
2026-01-14 16:57:35 +08:00
parent 804baa64b2
commit ec265be26b
38 changed files with 585 additions and 294 deletions

View File

@@ -1,6 +1,6 @@
import { TSharedItem } from "@/shared";
export type LookUpServiceInputDto = {
export type ServiceInputLookUp = {
text: string,
queryLang: string,
definitionLang: string,
@@ -8,4 +8,4 @@ export type LookUpServiceInputDto = {
userId?: string;
};
export type LookUpServiceOutputDto = TSharedItem;
export type ServiceOutputLookUp = TSharedItem;