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

13 lines (12 loc) 265 B
import { ITokenLocation } from './token-location.interface'; export interface IToken { type: string; value: string; length: number; format: string; range: number[]; loc: { start: ITokenLocation; end: ITokenLocation; }; }