File tree Expand file tree Collapse file tree 1 file changed +16
-4
lines changed Expand file tree Collapse file tree 1 file changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -42,13 +42,25 @@ export interface AppInfo {
4242 * Options for executing devicectl commands
4343 */
4444export interface ExecuteOptions {
45- /** Whether to add the --device option to the actual devicectl command */
45+ /**
46+ * Whether to add the --device option to the actual devicectl command
47+ * @default false
48+ */
4649 noDevice ?: boolean ;
47- /** Whether to log stdout output */
50+ /**
51+ * Whether to log stdout output
52+ * @default false
53+ */
4854 logStdout ?: boolean ;
49- /** Whether to return JSON output */
55+ /**
56+ * Whether to return JSON output
57+ * @default true
58+ */
5059 asJson ?: boolean ;
51- /** Whether to run the command asynchronously */
60+ /**
61+ * Whether to run the command asynchronously
62+ * @default false
63+ */
5264 asynchronous ?: boolean ;
5365 /** Additional subcommand options */
5466 subcommandOptions ?: string [ ] | string ;
You can’t perform that action at this time.
0 commit comments