@frontitude/cli
Version:
The Frontitude CLI enables product teams to integrate their code with Frontitude (frontitude.com), thus creating a single source of truth for their product copy, from design to development.
11 lines (10 loc) • 522 B
TypeScript
export declare const generateFrontitudeLibraryLink: () => string;
export declare const getWorkspaceProjects: () => Promise<{
id: string;
name: string;
}[]>;
export declare const mapWorkspaceTagNamesToIds: (tagNames?: string[]) => Promise<{
[key: string]: string;
}>;
export declare const getSourceLanguageLocaleId: () => Promise<string>;
export declare const pullCopyLibrary: ({ status, hasKey, isIncludeTranslations, isIncludeMetadata, isUseNestedFormat, tagIds }: TextsPullOptions) => Promise<{}>;