Closed
Description
If we have this:
model Foo {
p: {
a: string;
};
we have the following syntax to add decorators to the anonymous model:
@@clientName(Foo.p::type, "NewName");
but in its type graph, the anonymous type never gets that decorator. And therefore it does not work at all.
Playground