CSharpToTypeScript
CSharpToTypeScript copied to clipboard
DateOnly not converting to string
public class Sample
{
public DateTime DT { get; set; }
public DateOnly DO { get; set; }
}
converts to
export interface Sample {
dT: string;
dO: DateOnly;
}
I would expect it DateOnly
to convert to a string just like DateTime