You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wonder if the above typespec means we have an operation that have a body parameter which is a dictionary of string or it means we have additional arguments that takes string? Is it possible that there might be a scenario, service wants to have a open dictionary as query parameter?
@query // this is not allowed now.
scalar bar extends string;
@route("/foos/{fooId}")
op test(
@path fooId: string,
...Record<bar>,
): void;
Playground Link
The text was updated successfully, but these errors were encountered: