Skip to content
This repository was archived by the owner on Feb 2, 2021. It is now read-only.

Commit 3ce7804

Browse files
committed
1 parent 488381e commit 3ce7804

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

declarations.d.ts

+14
Original file line numberDiff line numberDiff line change
@@ -361,3 +361,17 @@ interface IYargArgv extends IDictionary<any> {
361361
_: string[];
362362
$0: string;
363363
}
364+
365+
/**
366+
* Verifies the host OS configuration and prints warnings to the users
367+
* Code behind of the "doctor" command
368+
* @interface
369+
*/
370+
interface IDoctorService {
371+
/**
372+
* Verifies the host OS configuration and prints warnings to the users
373+
*
374+
* @returns {boolean} true if at least one warning was printed
375+
*/
376+
printWarnings(): boolean;
377+
}

0 commit comments

Comments
 (0)