UNPKG

jscpd

Version:

Copy/paste detector for programming code, support JavaScript, CoffeeScript, PHP, Ruby, Python, Less, Go, Java, Yaml, C#, C++, C, Puppet, Twig languages

8 lines (7 loc) 282 B
import EventEmitter = require('eventemitter3'); import { IClone } from './clone.interface'; import { IStatistic } from './statistic.interface'; export interface IReporter { attach(eventEmitter: EventEmitter): void; report(clones?: IClone[], statistic?: IStatistic): void; }