visible/visible

View on GitHub
packages/@visi/core/src/rule/progress.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { Source } from '../source';

export interface Progress {
  readonly totalCount: number;
  readonly doneCount: number;
  readonly sources: Map<string, Source>;
}