demo-protobuf: Wrap protobuf field decorator

This commit is contained in:
willclarktech 2020-06-16 18:09:24 +01:00
parent 1ff83189db
commit 8eeb52999c
No known key found for this signature in database
GPG Key ID: 551A86E2E398ADF7

View File

@ -17,8 +17,12 @@ function CosmosMessage(registry: Registry, typeUrl: string): TypeDecorator<any>
};
}
const CosmosField = {
String: (id: number) => Field.d(id, "string"),
};
@CosmosMessage(myRegistry, "/demo.MsgDemo")
export class MsgDemo extends Message<{}> {
@Field.d(1, "string")
@CosmosField.String(1)
public readonly example: string = "";
}