Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fill members that have call signatures #159

Closed
tamj0rd2 opened this issue Apr 21, 2021 · 1 comment
Closed

Fill members that have call signatures #159

tamj0rd2 opened this issue Apr 21, 2021 · 1 comment
Labels
enhancement New feature or request good first issue Good for newcomers released

Comments

@tamj0rd2
Copy link
Owner

tamj0rd2 commented Apr 21, 2021

Example

interface TargetType {
  someFn(): number
}

// before fix
const target: TargetType = {}

// after fix
const target: TargetType = {
  someFn() {
    throw new Error('Not yet implemented!')
  }
}
@tamj0rd2 tamj0rd2 added the enhancement New feature or request label Apr 21, 2021
@tamj0rd2 tamj0rd2 added the good first issue Good for newcomers label May 11, 2021
github-actions bot pushed a commit that referenced this issue May 17, 2021
# [ts-quickfixes-plugin-v1.12.0](ts-quickfixes-plugin-v1.11.0...ts-quickfixes-plugin-v1.12.0) (2021-05-17)

### Features

* delcare missing members that are functions ([6635d5b](6635d5b)), closes [#159](#159)
@tamj0rd2
Copy link
Owner Author

🎉 This issue has been resolved in version ts-quickfixes-plugin-v1.12.0 🎉

The release is available on:

Your semantic-release bot 📦🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request good first issue Good for newcomers released
Projects
None yet
Development

No branches or pull requests

1 participant