智慧水务管理系统 - 精河县供水工程综合管理平台

textformat.d.ts 720B

12345678910111213141516171819
  1. import * as $protobuf from "..";
  2. import { ITextFormatOptions } from "./textformat.generated";
  3. export * from "./textformat.generated";
  4. declare module ".." {
  5. namespace textformat {
  6. /** Maximum recursion depth for formatting length-delimited unknown fields. */
  7. let unknownRecursionLimit: number;
  8. }
  9. interface Type {
  10. /** Installed by `textformat.install()`. Parses this type from protobuf text format. */
  11. fromText(text: string): $protobuf.Message<{}>;
  12. /** Installed by `textformat.install()`. Formats a message of this type as protobuf text format. */
  13. toText(message: ($protobuf.Message<{}>|{ [k: string]: any }), options?: ITextFormatOptions): string;
  14. }
  15. }