Skip to content

Commit

Permalink
Set time props types to string | number
Browse files Browse the repository at this point in the history
Co-authored-by: Kari Söderholm <haprog@vaadin.com>
  • Loading branch information
pekam and Haprog committed May 29, 2020
1 parent fc3836b commit c81691f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions @types/interfaces.d.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
export interface TimePickerTime {
hours: number;
minutes: number;
seconds: number;
milliseconds: number;
hours: string | number;
minutes: string | number;
seconds?: string | number;
milliseconds?: string | number;
}

export interface TimePickerI18n {
Expand Down

0 comments on commit c81691f

Please sign in to comment.