nx
Version:
12 lines (11 loc) • 506 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.handleFlushSyncGeneratorChangesToDisk = handleFlushSyncGeneratorChangesToDisk;
const sync_generators_1 = require("./sync-generators");
async function handleFlushSyncGeneratorChangesToDisk(generators) {
const result = await (0, sync_generators_1.flushSyncGeneratorChangesToDisk)(generators);
return {
response: JSON.stringify(result),
description: 'handleFlushSyncGeneratorChangesToDisk',
};
}
;