proto3-json-serializer
Version:
Support for proto3 JSON serialiazation/deserialization for protobuf.js
5 lines (4 loc) • 305 B
TypeScript
import * as protobuf from 'protobufjs';
import { JSONValue } from './types';
export declare function resolveEnumValueToString(enumType: protobuf.Enum, enumValue: JSONValue): string | number;
export declare function resolveEnumValueToNumber(enumType: protobuf.Enum, enumValue: JSONValue): string | number;