2022-11-16 07:47:03 +00:00
|
|
|
import type { BinaryWriteOptions } from "@protobuf-ts/runtime";
|
|
|
|
import type { IBinaryWriter } from "@protobuf-ts/runtime";
|
|
|
|
import type { BinaryReadOptions } from "@protobuf-ts/runtime";
|
|
|
|
import type { IBinaryReader } from "@protobuf-ts/runtime";
|
|
|
|
import type { PartialMessage } from "@protobuf-ts/runtime";
|
|
|
|
import { MessageType } from "@protobuf-ts/runtime";
|
|
|
|
/**
|
|
|
|
* @generated from protobuf message Message
|
|
|
|
*/
|
|
|
|
export interface Message {
|
|
|
|
/**
|
|
|
|
* @generated from protobuf field: Type type = 1;
|
|
|
|
*/
|
|
|
|
type: Type;
|
|
|
|
/**
|
|
|
|
* @generated from protobuf field: map<string, State> bootstrap = 2;
|
|
|
|
*/
|
|
|
|
bootstrap: {
|
|
|
|
[key: string]: State;
|
|
|
|
};
|
|
|
|
/**
|
|
|
|
* @generated from protobuf field: optional bytes data = 3;
|
|
|
|
*/
|
|
|
|
data?: Uint8Array;
|
|
|
|
/**
|
2022-11-20 00:54:04 +00:00
|
|
|
* @generated from protobuf field: optional bytes signature = 4;
|
|
|
|
*/
|
|
|
|
signature?: Uint8Array;
|
|
|
|
/**
|
|
|
|
* @generated from protobuf field: optional int64 timestamp = 5;
|
|
|
|
*/
|
|
|
|
timestamp?: bigint;
|
|
|
|
/**
|
|
|
|
* @generated from protobuf field: optional bytes id = 6;
|
2022-11-16 07:47:03 +00:00
|
|
|
*/
|
|
|
|
id?: Uint8Array;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* @generated from protobuf message State
|
|
|
|
*/
|
|
|
|
export interface State {
|
|
|
|
/**
|
|
|
|
* @generated from protobuf field: repeated bytes connectedTo = 1;
|
|
|
|
*/
|
|
|
|
connectedTo: Uint8Array[];
|
|
|
|
/**
|
|
|
|
* @generated from protobuf field: optional bytes data = 2;
|
|
|
|
*/
|
|
|
|
data?: Uint8Array;
|
2022-11-20 00:54:04 +00:00
|
|
|
/**
|
|
|
|
* @generated from protobuf field: optional bytes signature = 3;
|
|
|
|
*/
|
|
|
|
signature?: Uint8Array;
|
|
|
|
/**
|
|
|
|
* @generated from protobuf field: optional int64 timestamp = 4;
|
|
|
|
*/
|
|
|
|
timestamp?: bigint;
|
2022-11-16 07:47:03 +00:00
|
|
|
}
|
|
|
|
/**
|
|
|
|
* @generated from protobuf enum Type
|
|
|
|
*/
|
|
|
|
export declare enum Type {
|
|
|
|
/**
|
|
|
|
* @generated synthetic value - protobuf-ts requires all enums to have a 0 value
|
|
|
|
*/
|
|
|
|
UNSPECIFIED$ = 0,
|
|
|
|
/**
|
|
|
|
* @generated from protobuf enum value: BOOTSTRAP_REQUEST = 1;
|
|
|
|
*/
|
|
|
|
BOOTSTRAP_REQUEST = 1,
|
|
|
|
/**
|
|
|
|
* @generated from protobuf enum value: BOOTSTRAP_RESPONSE = 2;
|
|
|
|
*/
|
|
|
|
BOOTSTRAP_RESPONSE = 2,
|
|
|
|
/**
|
|
|
|
* @generated from protobuf enum value: CONNECTED = 3;
|
|
|
|
*/
|
|
|
|
CONNECTED = 3,
|
|
|
|
/**
|
|
|
|
* @generated from protobuf enum value: DISCONNECTED = 4;
|
|
|
|
*/
|
|
|
|
DISCONNECTED = 4,
|
|
|
|
/**
|
|
|
|
* @generated from protobuf enum value: STATE = 5;
|
|
|
|
*/
|
|
|
|
STATE = 5
|
|
|
|
}
|
|
|
|
declare class Message$Type extends MessageType<Message> {
|
|
|
|
constructor();
|
|
|
|
create(value?: PartialMessage<Message>): Message;
|
|
|
|
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: Message): Message;
|
|
|
|
private binaryReadMap2;
|
|
|
|
internalBinaryWrite(message: Message, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* @generated MessageType for protobuf message Message
|
|
|
|
*/
|
|
|
|
export declare const Message: Message$Type;
|
|
|
|
declare class State$Type extends MessageType<State> {
|
|
|
|
constructor();
|
|
|
|
create(value?: PartialMessage<State>): State;
|
|
|
|
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: State): State;
|
|
|
|
internalBinaryWrite(message: State, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* @generated MessageType for protobuf message State
|
|
|
|
*/
|
|
|
|
export declare const State: State$Type;
|
|
|
|
export {};
|
|
|
|
//# sourceMappingURL=messages.d.ts.map
|