Files
whsfund/functions/node_modules/proto3-json-serializer/build/src/fieldmask.d.ts
2026-03-23 15:29:13 -04:00

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[];
};