@awarns/tracing
Version:
AwarNS Framework package that eases the tracing and debugging of complex task execution workflows
7 lines (6 loc) • 377 B
TypeScript
import { Folder } from '@nativescript/core';
import { Exporter as E, ExportResult as ER, ExportFormats as EF } from '@awarns/persistence/exporters';
export declare type Exporter = E;
export declare type ExportResult = ER;
export declare type ExportFormats = EF;
export declare function createTracesExporter(folder: Folder, format?: ExportFormats, fileName?: string): Exporter;