mirror of
https://github.com/chirpstack/chirpstack.git
synced 2025-05-01 00:19:40 +00:00
23 lines
647 B
TypeScript
Vendored
23 lines
647 B
TypeScript
Vendored
import * as jspb from 'google-protobuf'
|
|
|
|
|
|
|
|
export class Control extends jspb.Message {
|
|
getEnvironment(): string;
|
|
setEnvironment(value: string): Control;
|
|
|
|
serializeBinary(): Uint8Array;
|
|
toObject(includeInstance?: boolean): Control.AsObject;
|
|
static toObject(includeInstance: boolean, msg: Control): Control.AsObject;
|
|
static serializeBinaryToWriter(message: Control, writer: jspb.BinaryWriter): void;
|
|
static deserializeBinary(bytes: Uint8Array): Control;
|
|
static deserializeBinaryFromReader(message: Control, reader: jspb.BinaryReader): Control;
|
|
}
|
|
|
|
export namespace Control {
|
|
export type AsObject = {
|
|
environment: string,
|
|
}
|
|
}
|
|
|