UNPKG

@atomist/org-visualizer

Version:

Organization Visualizer using Atomist project scanning

15 lines 404 B
import { Analyzed } from "../aspect/AspectRegistry"; export interface Term { name: string; predicate: (pas: Analyzed) => boolean; } export interface Terms { terms: Term[]; } export interface Partition { term: Term; matching: number; total: number; } export declare function suggestPartitions(repos: Analyzed[], terms: Terms): Partition[]; //# sourceMappingURL=partitioner.d.ts.map