Files
learn-languages/src/modules/dictionary/dictionary-service-dto.ts
2026-02-02 23:57:01 +08:00

12 lines
259 B
TypeScript

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