keep-a-changelog-new-release/types/to-vfile/index.d.ts

11 lines
239 B
TypeScript

declare module 'to-vfile' {
import {VFile} from "vfile";
interface Options {
encoding: string
}
function read(path: string, options: Options): Promise<VFile>;
function write(file: VFile, options: Options): Promise<void>;
}