@marp-team/marp-cli
Version:
A CLI interface for Marp and Marpit based converters
10 lines (9 loc) • 734 B
TypeScript
export declare const getPlatform: () => Promise<"wsl1" | NodeJS.Platform>;
export declare const isAccessible: (path: string, mode?: number) => Promise<boolean>;
export declare const isExecutable: (path: string) => Promise<boolean>;
export declare const isReadable: (path: string) => Promise<boolean>;
export declare const findExecutable: (paths: string[]) => Promise<string | undefined>;
export declare const isSnapBrowser: (executablePath: string) => Promise<boolean>;
export declare const findExecutableBinary: (binaries: string[]) => Promise<string | undefined>;
export declare const which: (command: string) => Promise<string | undefined>;
export declare const normalizeDarwinAppPath: (executablePath: string) => Promise<string>;