UNPKG

mypa-google-docs-importer

Version:

Imports Google docs documents and saves them to JSON.

18 lines (16 loc) 335 B
import type { ResolvedImportSheetConfig, InputImportSheetConfig, } from "../types"; export function createConfig( userConfig: InputImportSheetConfig, ): ResolvedImportSheetConfig { return { columnKey: "lang", sheetId: 0, outputDir: "translations", prefix: "", filenamePrefix: "", ...userConfig, }; }