UNPKG

@cocalc/project

Version:
9 lines (8 loc) 240 B
interface Options { command: string; args: (inputPath: any) => string[]; input: string; timeout_s?: number; } export default function genericFormat({ command, args, input, timeout_s, }: Options): Promise<string>; export {};