UNPKG

@mintlify/common

Version:

Commonly shared code within Mintlify

10 lines (9 loc) 250 B
import type { Root } from 'mdast'; export interface FileWithTree { path: string; tree: Root; } export declare const buildImportMap: (files: FileWithTree[]) => { importedFiles: Set<string>; fileImportsMap: Map<string, Set<string>>; };