We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi everybody, There is no set method of map filed on TS.
When a proto file has map field: syntax = "proto3";
package example;
message Example { map<string, string> labels = 1; }
It generates this TS definitions export class Example extends jspb.Message { getLabelsMap(): jspb.Map<string, string>; clearLabelsMap(): void;
serializeBinary(): Uint8Array; toObject(includeInstance?: boolean): Example.AsObject; static toObject(includeInstance: boolean, msg: Example): Example.AsObject; static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>}; static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>}; static serializeBinaryToWriter(message: Example, writer: jspb.BinaryWriter): void; static deserializeBinary(bytes: Uint8Array): Example; static deserializeBinaryFromReader(message: Example, reader: jspb.BinaryReader): Example; }
export namespace Example { export type AsObject = { labelsMap: Array<[string, string]>, } }
Note: No setLablesMap() method, @jonny-improbable could you take a look about this issue?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi everybody,
There is no set method of map filed on TS.
When a proto file has map field:
syntax = "proto3";
package example;
message Example
{
map<string, string> labels = 1;
}
It generates this TS definitions
export class Example extends jspb.Message {
getLabelsMap(): jspb.Map<string, string>;
clearLabelsMap(): void;
serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): Example.AsObject;
static toObject(includeInstance: boolean, msg: Example): Example.AsObject;
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
static serializeBinaryToWriter(message: Example, writer: jspb.BinaryWriter): void;
static deserializeBinary(bytes: Uint8Array): Example;
static deserializeBinaryFromReader(message: Example, reader: jspb.BinaryReader): Example;
}
export namespace Example {
export type AsObject = {
labelsMap: Array<[string, string]>,
}
}
Note: No setLablesMap() method, @jonny-improbable could you take a look about this issue?
The text was updated successfully, but these errors were encountered: