//#region src/wkt/value.d.ts /** * Represents any valid JSON value. Matches the JSON value space used by * google.protobuf.Value. */ type JsonValue = null | number | string | boolean | JsonObject | JsonValue[]; /** * Represents a JSON object with string keys and JSON values. Matches the * structure used by google.protobuf.Struct. */ interface JsonObject { [key: string]: JsonValue; } //#endregion export { JsonObject, JsonValue }; //# sourceMappingURL=value.d.ts.map