UNPKG

fetch-lokalise

Version:

This is a simple helper for me to download and format translations from Lokalise.

9 lines (8 loc) 214 B
interface Params { projectId: string; token: string; outDir: string; tags?: string[]; } export default function fetchLokalise({ projectId, token, outDir, tags, }: Params): Promise<void>; export {};