6 lines
251 B
TypeScript
6 lines
251 B
TypeScript
import type { DoctorOptions } from "./types";
|
|
export declare function doctor(options?: DoctorOptions): Promise<number>;
|
|
export * from "./types";
|
|
export { runDoctor } from "./runner";
|
|
export { formatDoctorOutput, formatJsonOutput } from "./formatter";
|