mirror of https://github.com/grpc/grpc-node.git
31 lines
575 B
TypeScript
31 lines
575 B
TypeScript
// Original file: deps/googleapis/google/api/http.proto
|
|
|
|
|
|
/**
|
|
* A custom pattern is used for defining custom HTTP verb.
|
|
*/
|
|
export interface CustomHttpPattern {
|
|
/**
|
|
* The name of this custom HTTP verb.
|
|
*/
|
|
'kind'?: (string);
|
|
/**
|
|
* The path matched by this custom verb.
|
|
*/
|
|
'path'?: (string);
|
|
}
|
|
|
|
/**
|
|
* A custom pattern is used for defining custom HTTP verb.
|
|
*/
|
|
export interface CustomHttpPattern__Output {
|
|
/**
|
|
* The name of this custom HTTP verb.
|
|
*/
|
|
'kind': (string);
|
|
/**
|
|
* The path matched by this custom verb.
|
|
*/
|
|
'path': (string);
|
|
}
|