Files
learn-languages/src/modules/dictionary/dictionary-service-dto.ts
2026-01-14 16:57:35 +08:00

12 lines
243 B
TypeScript

import { TSharedItem } from "@/shared";
export type ServiceInputLookUp = {
text: string,
queryLang: string,
definitionLang: string,
forceRelook: boolean,
userId?: string;
};
export type ServiceOutputLookUp = TSharedItem;