mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-10-28 12:38:33 +00:00
* ensure compile verbose pref is included on upload * better verbose typings Signed-off-by: Akos Kitta <a.kitta@arduino.cc> Co-authored-by: Akos Kitta <a.kitta@arduino.cc>
This commit is contained in:
@@ -84,11 +84,12 @@ export namespace CoreService {
|
||||
}
|
||||
|
||||
export namespace Upload {
|
||||
export interface Options extends Compile.Options {
|
||||
export interface Options extends Omit<Compile.Options, 'verbose'> {
|
||||
readonly port?: Port;
|
||||
readonly programmer?: Programmer | undefined;
|
||||
readonly verify: boolean;
|
||||
readonly userFields: BoardUserField[];
|
||||
readonly verbose: { compile: boolean; upload: boolean };
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user