?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/wdp/wp-content/plugins/brizy/public/editor-client/src/autoSave/



?? Go up: /home/webdevt/www/wdp/wp-content/plugins/brizy/public/editor-client/src

?? Viewing: index.ts

import { updatePage, updateProject } from "../api";
import { AutoSave } from "../types/AutoSave";

export const autoSave = (data: AutoSave) => {
  if (data.projectData) {
    updateProject(data.projectData);
  }

  if (data.pageData) {
    updatePage(data.pageData);
  }
};


??

??