Files
softplayer-js-proto/dist/api/test/v1/test_v1_pb.d.ts

67 lines
2.0 KiB
TypeScript

import type { GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
import type { Message } from "@bufbuild/protobuf";
/**
* Describes the file test/v1/test_v1.proto.
*/
export declare const file_test_v1_test_v1: GenFile;
/**
* @generated from message test.v1.PingRequest
*/
export type PingRequest = Message<"test.v1.PingRequest"> & {};
/**
* Describes the message test.v1.PingRequest.
* Use `create(PingRequestSchema)` to create a new message.
*/
export declare const PingRequestSchema: GenMessage<PingRequest>;
/**
* @generated from message test.v1.PingResponse
*/
export type PingResponse = Message<"test.v1.PingResponse"> & {};
/**
* Describes the message test.v1.PingResponse.
* Use `create(PingResponseSchema)` to create a new message.
*/
export declare const PingResponseSchema: GenMessage<PingResponse>;
/**
* @generated from message test.v1.PongRequest
*/
export type PongRequest = Message<"test.v1.PongRequest"> & {};
/**
* Describes the message test.v1.PongRequest.
* Use `create(PongRequestSchema)` to create a new message.
*/
export declare const PongRequestSchema: GenMessage<PongRequest>;
/**
* @generated from message test.v1.PongResponse
*/
export type PongResponse = Message<"test.v1.PongResponse"> & {};
/**
* Describes the message test.v1.PongResponse.
* Use `create(PongResponseSchema)` to create a new message.
*/
export declare const PongResponseSchema: GenMessage<PongResponse>;
/**
* *
* Service for handling environments
*
* @generated from service test.v1.TestService
*/
export declare const TestService: GenService<{
/**
* @generated from rpc test.v1.TestService.Ping
*/
ping: {
methodKind: "unary";
input: typeof PingRequestSchema;
output: typeof PingResponseSchema;
};
/**
* @generated from rpc test.v1.TestService.Pong
*/
pong: {
methodKind: "unary";
input: typeof PongRequestSchema;
output: typeof PongResponseSchema;
};
}>;
//# sourceMappingURL=test_v1_pb.d.ts.map