5 lines
305 B
TypeScript
5 lines
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;
|