Skip to content

Commit

Permalink
HDS-3945 Remove undefined and change args to optional
Browse files Browse the repository at this point in the history
  • Loading branch information
KristinLBradley committed Nov 15, 2024
1 parent 72bc5d0 commit 2c406d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/components/src/components/hds/time/single.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import type { DisplayType } from '../../../services/hds-time-types.ts';

export interface HdsTimeSingleSignature {
Args: {
date: Date | undefined;
date?: Date;
displayInner: DisplayType;
isoUtcStringInner: string | undefined;
isoUtcStringInner?: string;
register: () => void;
unregister: () => void;
};
Expand Down

0 comments on commit 2c406d3

Please sign in to comment.