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.

17 lines (16 loc) 491 B
export declare function getWorkspaceProjects(): Promise<{ projects: Array<{ id: string; name: string; }>; }>; export declare function pullCopyLibrary(data: any): Promise<any>; export declare function getWorkspaceLocales(): Promise<{ localeIds: string[]; }>; export declare function getSettings(): Promise<{ settings: WorkspaceSettings; }>; export declare function mapTagNamesToIds(tagNames: string[]): Promise<{ [key: string]: string; }>;