UNPKG

proto3-json-serializer

Version:

Support for proto3 JSON serialiazation/deserialization for protobuf.js

7 lines (6 loc) 248 B
import * as protobuf from 'protobufjs'; import { JSONValue } from './types'; export interface ToProto3JSONOptions { numericEnums: boolean; } export declare function toProto3JSON(obj: protobuf.Message, options?: ToProto3JSONOptions): JSONValue;