UNPKG

@idscan/idvc2

Version:

component for the capturing documents

21 lines (20 loc) 446 B
import { StepType } from '../environment/stepsDescription'; interface IStepLog { start: number; end: number; duration: number; } export default class Logger { data: { steps: Record<StepType, IStepLog>; } | Record<string, any>; currentStep: string; constructor(); set step(step: string); get step(): string; get stepData(): any; get steps(): {}; start(): void; end(): void; } export {};