function getTypesImport()

in ark-demo/webapp/_templates/promptUtils.js [91:96]


function getTypesImport(type) {
  if (!Object.values(MAP_TYPES).includes(type)) {
    throw new Error(`Unknown Map type ${type}`);
  }
  return `MAP_TYPES.${type.toUpperCase()}`;
}