mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-11-29 03:47:16 +00:00
ATL-73: Added library examples to the app.
Signed-off-by: Akos Kitta <kittaakos@typefox.io>
This commit is contained in:
@@ -92,3 +92,32 @@ export namespace TaskProgress {
|
||||
completed: boolean,
|
||||
}
|
||||
}
|
||||
|
||||
export class Programmer extends jspb.Message {
|
||||
getPlatform(): string;
|
||||
setPlatform(value: string): Programmer;
|
||||
|
||||
getId(): string;
|
||||
setId(value: string): Programmer;
|
||||
|
||||
getName(): string;
|
||||
setName(value: string): Programmer;
|
||||
|
||||
|
||||
serializeBinary(): Uint8Array;
|
||||
toObject(includeInstance?: boolean): Programmer.AsObject;
|
||||
static toObject(includeInstance: boolean, msg: Programmer): Programmer.AsObject;
|
||||
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
||||
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
||||
static serializeBinaryToWriter(message: Programmer, writer: jspb.BinaryWriter): void;
|
||||
static deserializeBinary(bytes: Uint8Array): Programmer;
|
||||
static deserializeBinaryFromReader(message: Programmer, reader: jspb.BinaryReader): Programmer;
|
||||
}
|
||||
|
||||
export namespace Programmer {
|
||||
export type AsObject = {
|
||||
platform: string,
|
||||
id: string,
|
||||
name: string,
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user