Date support in d.ts for servicestack typescript client

Viewed 365

By default servicestack typescript file dtos.ts generated by webstorm plugin makes all date properties as string.

// @Required()
to: string;

in servicestack .cs file this property is DateTime. Any ideas why it is so and what do I need to do so it converts it to Date as asp.net web api for example

1 Answers
Related