interface DocMakerOutputArgs {
    readFileSync(
        path: PathLike,
    ): undefined | string | Buffer<ArrayBufferLike>;
    writeFileSync(path: PathLike, data: string): void;
}

Methods