CSharpToTypeScript icon indicating copy to clipboard operation
CSharpToTypeScript copied to clipboard

DateOnly not converting to string

Open billrob opened this issue 2 years ago • 0 comments

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

billrob avatar Aug 04 '22 21:08 billrob