Skip to content

Home > vue-metamorph > TransformResult

TransformResult type

Return type of the transform function, containing new source code and codemod stats

Signature:

typescript
export type TransformResult = {
    code: string;
    stats: [codemodName: string, transformCount: number][];
};