Skip to content

Commit

Permalink
Fix type error from upgrading @types/node
Browse files Browse the repository at this point in the history
- pretty basic/expected, there are other instances in EUI where we've had to do this
  • Loading branch information
cee-chen committed Oct 13, 2023
1 parent e24cb34 commit 9d5cb93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/delay_hide/delay_hide.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export class EuiDelayHide extends Component<
countdownExpired: this.props.hide,
};

private timeoutId?: number;
private timeoutId?: ReturnType<typeof setTimeout>;

componentDidMount() {
// if the component begins visible start counting
Expand Down

0 comments on commit 9d5cb93

Please sign in to comment.