UNPKG

274 BTypeScriptView Raw
1interface ExecLike {
2 command?: string;
3 stderr?: string;
4 stdout?: string;
5}
6export default function formatExecReturn<T extends ExecLike>(obj: T): Pick<T, Exclude<keyof T, 'command' | 'stderr' | 'stdout'>>;
7export {};
8//# sourceMappingURL=formatExecReturn.d.ts.map
\No newline at end of file