Implements '@indexed' decorator factory This is used to specify complex service types which are need to expose types containing indexed definition, for example:
~~~typescriptimport { type } from '@imqueue/rpc';@indexed('[fieldName: string]: any')class Schema { [fieldName: string]: any}~~~ Copy
~~~typescriptimport { type } from '@imqueue/rpc';@indexed('[fieldName: string]: any')class Schema { [fieldName: string]: any}~~~
Implements '@indexed' decorator factory This is used to specify complex service types which are need to expose types containing indexed definition, for example: