@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.
12 lines (11 loc) • 849 B
TypeScript
export declare const isOutputFileTypeSupported: (fileFullPath: string) => boolean | "";
export declare const setConnectedProjects: (projects: ProjectsConfig) => Promise<void>;
export declare const getConnectedProjects: () => Promise<ProjectsConfig>;
export declare const setIsLibraryConnected: (isLibraryConnected: boolean) => Promise<void>;
export declare const getIsLibraryConnected: () => Promise<boolean>;
export declare const setXliffVersion: (xliffVersion: string) => Promise<void>;
export declare const getXliffVersion: () => Promise<string>;
/**
* @param isDryRun boolean. If set to true, the final result will be returned by the function call, instead of saving it into the configured output file.
*/
export declare const pullProjectsTextsIntoCodebase: (textsPullOptions: TextsPullOptions, isDryRun?: boolean) => Promise<any>;