demo-protobuf: Wrap protobuf field decorator
This commit is contained in:
parent
1ff83189db
commit
8eeb52999c
@ -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 = "";
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user