UNPKG

@kenchan0130/markdown-to-atlassian-wiki-markup-cli

Version:

Command line interface of markdown-to-atlassian-wiki-markup (https://github.com/kenchan0130/markdown-to-atlassian-wiki-markup)

10 lines (9 loc) 283 B
/// <reference types="node" /> import { URL } from "url"; export interface FileStream { readFileAsync(path: string | number | Buffer | URL, options?: { encoding?: null; flag?: string; } | null): Promise<Buffer>; } export declare const fileStream: FileStream;