apisurf
Version:
Analyze API surface changes between npm package versions to catch breaking changes
7 lines (6 loc) • 406 B
TypeScript
import { ApiSurface } from '../types/ApiSurface.js';
/**
* Writes a detailed JSON log of API surface changes between two versions.
* Includes full export information, type definitions, and change analysis.
*/
export declare function writeApiSurfaceLog(logfilePath: string, base: ApiSurface, head: ApiSurface, packageName: string, fromVersion: string, toVersion: string, format?: string): Promise<void>;