-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
In order for other plugins to generate extra code in the index.ts file protoc_insertion_point can be used. This commit adds one insertion point at the end of the file. From docs: > If non-empty, indicates that the named file should already exist, and the > content here is to be inserted into that file at a defined insertion > point. This feature allows a code generator to extend the output > produced by another code generator. The original generator may provide > insertion points by placing special annotations in the file that look > like: > @@protoc_insertion_point(NAME)
- Loading branch information
Showing
4 changed files
with
8 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -644,3 +644,5 @@ export function createFreightServiceClient( | |
}, | ||
}; | ||
} | ||
|
||
// @@protoc_insertion_point(typescript-http-eof) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -400,3 +400,5 @@ export function createSyntaxServiceClient( | |
}, | ||
}; | ||
} | ||
|
||
// @@protoc_insertion_point(typescript-http-eof) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters