Skip to content
This repository has been archived by the owner on Nov 9, 2024. It is now read-only.

refactor(types): decrease specificity of lifecycle hook return type #1167

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

J-Michalek
Copy link

@J-Michalek J-Michalek commented May 27, 2024

I find it oddly specific and since I am using https://typescript-eslint.io/rules/explicit-function-return-type/ in my projects I have to explicitely say false | void instead of a simple boolean with it every time there is a tooltip that should have a onShow hook condition. Passing true should work the same as void as the implementation only checks for false.

const showTooltip = false

// There has to be a condition to satisfy the void return type
function onShow(): false | void {
  if (!showTooltip) {
    return false
  }
}

// Ideally this would work
function onShow(): boolean {
  return showTooltip
}

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant