const session = createSession();
session.tokenize(code1, 'config.ts');
session.tokenize(code2, 'api.ts');
const report = session.getReport();
console.log(report);
// {
// totalDetections: 8,
// byCategory: { KEY: 3, SECRET: 2, CONN: 2, HOST: 1 },
// byFile: { 'config.ts': 5, 'api.ts': 3 },
// uniqueTokens: 6 // Fewer than detections if same secret appears twice
// }