Skip to content

Home > vue-metamorph > ManualMigrationReport

ManualMigrationReport type

An object containing a manual migration that a ManualMigrationPlugin reported

Signature:

typescript
export type ManualMigrationReport = {
    message: string;
    file: string;
    snippet: string;
    pluginName: string;
    lineStart: number;
    lineEnd: number;
    columnStart: number;
    columnEnd: number;
};