// @generated by protoc-gen-es v1.10.0 // @generated from file token/v1/api.proto (package token.v1, syntax proto3) /* eslint-disable */ // @ts-nocheck import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf"; import { Message, proto3 } from "@bufbuild/protobuf"; /** * @generated from message token.v1.GetTokenRequest */ export declare class GetTokenRequest extends Message { constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "token.v1.GetTokenRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetTokenRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetTokenRequest; static fromJsonString(jsonString: string, options?: Partial): GetTokenRequest; static equals(a: GetTokenRequest | PlainMessage | undefined, b: GetTokenRequest | PlainMessage | undefined): boolean; } /** * @generated from message token.v1.GetTokenResponse */ export declare class GetTokenResponse extends Message { /** * @generated from field: string token = 1; */ token: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "token.v1.GetTokenResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetTokenResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetTokenResponse; static fromJsonString(jsonString: string, options?: Partial): GetTokenResponse; static equals(a: GetTokenResponse | PlainMessage | undefined, b: GetTokenResponse | PlainMessage | undefined): boolean; } /** * @generated from message token.v1.StreamTokenRequest */ export declare class StreamTokenRequest extends Message { constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "token.v1.StreamTokenRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): StreamTokenRequest; static fromJson(jsonValue: JsonValue, options?: Partial): StreamTokenRequest; static fromJsonString(jsonString: string, options?: Partial): StreamTokenRequest; static equals(a: StreamTokenRequest | PlainMessage | undefined, b: StreamTokenRequest | PlainMessage | undefined): boolean; } /** * @generated from message token.v1.StreamTokenResponse */ export declare class StreamTokenResponse extends Message { /** * @generated from field: string message = 1; */ message: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "token.v1.StreamTokenResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): StreamTokenResponse; static fromJson(jsonValue: JsonValue, options?: Partial): StreamTokenResponse; static fromJsonString(jsonString: string, options?: Partial): StreamTokenResponse; static equals(a: StreamTokenResponse | PlainMessage | undefined, b: StreamTokenResponse | PlainMessage | undefined): boolean; }