UNPKG

@marp-team/marp-cli

Version:

A CLI interface for Marp and Marpit based converters

20 lines (19 loc) 476 B
export interface SOfficeOptions { path?: string; } export interface SOfficeProfileDir { path: string; fileURL: string; } export declare class SOffice { #private; preferredPath?: string; private _path; private _profileDir; private static _spawnQueue; constructor(opts?: SOfficeOptions); get path(): Promise<string>; get profileDir(): Promise<SOfficeProfileDir>; spawn(args: string[]): Promise<void>; private setProfileDir; }