@awarns/tracing
Version:
AwarNS Framework package that eases the tracing and debugging of complex task execution workflows
10 lines (9 loc) • 418 B
TypeScript
import { Folder } from '@nativescript/core';
import { JSONExporter } from '@awarns/persistence/exporters';
import { Trace } from '../entities';
import { TracesStore } from '../stores';
export declare class JSONTracesExporter extends JSONExporter<Trace> {
private tracesStore;
constructor(folder: Folder, fileName?: string, tracesStore?: TracesStore);
protected getItemsToExport(): Promise<Array<Trace>>;
}