mirror of https://github.com/grpc/grpc-node.git
25 lines
561 B
TypeScript
25 lines
561 B
TypeScript
// Original file: null
|
|
|
|
|
|
export interface I_google_protobuf_GeneratedCodeInfo_Annotation {
|
|
'path'?: (number)[];
|
|
'sourceFile'?: (string);
|
|
'begin'?: (number);
|
|
'end'?: (number);
|
|
}
|
|
|
|
export interface O_google_protobuf_GeneratedCodeInfo_Annotation {
|
|
'path': (number)[];
|
|
'sourceFile': (string);
|
|
'begin': (number);
|
|
'end': (number);
|
|
}
|
|
|
|
export interface IGeneratedCodeInfo {
|
|
'annotation'?: (I_google_protobuf_GeneratedCodeInfo_Annotation)[];
|
|
}
|
|
|
|
export interface OGeneratedCodeInfo {
|
|
'annotation': (O_google_protobuf_GeneratedCodeInfo_Annotation)[];
|
|
}
|