the documentation for SignalR for typescript shows...
# general
a
the documentation for SignalR for typescript shows that one specifies cors so:
Copy code
cors: [{
        allowedOrigins: ["<http://www.example.com>"],
    }]
but if I do that, there is a com/transpiler error: Type '{ allowedOrigins: string[]; }[]' is not assignable to type 'Input<SignalRCorsSettingsArgs> | undefined'. Type '{ allowedOrigins: string[]; }[]' is missing the following properties from type 'OutputInstance<SignalRCorsSettingsArgs>': apply, getts(2322) signalR.d.ts(118, 5): The expected type comes from property 'cors' which is declared here on type 'SignalRArgs'