Files
FrenoCorp/node_modules/proto3-json-serializer/build/src/fieldmask.d.ts

9 lines
299 B
TypeScript

import * as protobuf from 'protobufjs';
export interface FieldMask {
paths: string[];
}
export declare function googleProtobufFieldMaskToProto3JSON(obj: protobuf.Message & FieldMask): string;
export declare function googleProtobufFieldMaskFromProto3JSON(json: string): {
paths: string[];
};