UNPKG

nitro-codegen

Version:

The code-generator for react-native-nitro-modules.

9 lines (8 loc) 272 B
import type { Platform } from '../getPlatformSpecs.js'; import type { SourceFile } from '../syntax/SourceFile.js'; type AutolinkingFile = Omit<SourceFile, 'language'>; export interface Autolinking { platform: Platform; sourceFiles: AutolinkingFile[]; } export {};