UNPKG

@agility/cli

Version:

Agility CLI for working with your content. (Public Beta)

13 lines (12 loc) 370 B
interface Props { sourceGuid: string; targetGuid: string; sourcePageID: number; locale: string; } export interface OtherLocaleMapping { PageIDOtherLanguage: number; OtherLanguageCode: string; } export declare const findPageInOtherLocale: ({ sourcePageID, locale, sourceGuid, targetGuid }: Props) => Promise<OtherLocaleMapping | null>; export {};