UNPKG

@awarns/tracing

Version:

AwarNS Framework package that eases the tracing and debugging of complex task execution workflows

12 lines 419 B
import { JSONExporter } from '@awarns/persistence/exporters'; import { syncedTracesStore } from '../stores'; export class JSONTracesExporter extends JSONExporter { constructor(folder, fileName, tracesStore = syncedTracesStore) { super(folder, fileName); this.tracesStore = tracesStore; } getItemsToExport() { return this.tracesStore.getAll(); } } //# sourceMappingURL=json.js.map