UNPKG

cross-platform-path-utils

Version:

Cross-OS path normalization and import resolution utilities for CLI tools and static analysis

10 lines (9 loc) 282 B
/** * Represents the result of processing a file with imports */ export interface ProcessedFile { /** The processed content of the file with imports resolved */ content: string; /** List of file paths that were imported and processed */ importedFiles: string[]; }