prorm API Reference
    Preparing search index...

    Interface ConversionResult

    interface ConversionResult {
        models: { name: string; source: string }[];
        modelsIndex: string;
        migration: string;
    }
    Index
    models: { name: string; source: string }[]

    One generated model file per Prisma model block, keyed by class/file name (without extension).

    modelsIndex: string

    Barrel file that imports every model and exposes registerModels(prorm).

    migration: string

    Single "initial schema" migration covering every table and relation.