UNPKG

@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.

15 lines (14 loc) 502 B
export declare const getDataAndFileCombinedResult: (filePath: string, data: { [key: string]: string; }) => Promise<any>; export declare const updateFileWithData: (filePath: string, data: { [key: string]: string; }) => Promise<{ added: number; edited: number; }>; export declare const getFileDiff: (oldFileContent: any, newFileContent: any) => { added: number; edited: number; }; export declare const getDryRunResult: (filePath: string, data: any) => Promise<any>;