import { Loading } from "../../Loading"; import { TranslatedCollection } from "../TranslatedCollection"; import { GenericRecord } from "@webiny/app/types"; export interface IGetTranslatedCollectionRepository { execute(collectionId: string, languageCode: string): Promise; getLoading(): Loading; getTranslatedCollection = GenericRecord>(collectionId: string, languageCode: string): TranslatedCollection | undefined; }