UNPKG

gather-ts

Version:

A powerful code analysis and packaging tool designed for creating AI-friendly code representations for javascript and typescript projects.

8 lines (7 loc) 202 B
/** * Represents a map of file dependencies where each key is a file path * and the value is an array of paths to its dependencies */ export interface IDependencyMap { [key: string]: string[]; }