import type { Platform } from '../getPlatformSpecs.js'; import type { SourceFile } from '../syntax/SourceFile.js'; type AutolinkingFile = Omit; export interface Autolinking { platform: Platform; sourceFiles: AutolinkingFile[]; } export {};