import { buildZipStoreRaw } from './zipStoreEntry.js'; window.buildZipStore = function (files) { if (!files || typeof files !== 'object') { throw new Error('buildZipStore: expected files object'); } return buildZipStoreRaw(/** @type {Record} */ (files)); };