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

Class-based helpers not supported? #47

Open
boris-petrov opened this issue Feb 6, 2021 · 1 comment
Open

Class-based helpers not supported? #47

boris-petrov opened this issue Feb 6, 2021 · 1 comment

Comments

@boris-petrov
Copy link

Helper:

import Helper from '@ember/component/helper';

export default class ReturnTrueHelper extends Helper {
  public compute([value]: [any]): boolean {
    return true;
  }
}

HBS:

{{#if (return-true "foobar")}}
{{/if}}

Leads to:

This expression is not callable.
  Type 'ReturnTrueHelper' has no call signatures.typed-templates
@lifeart
Copy link
Owner

lifeart commented Feb 7, 2021

Yes, class based helpers does not supported (out of the box), but, types could be written manually, see https://github.com/lifeart/els-addon-typed-templates#how-can-i-override-extend-global-typings

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

No branches or pull requests

2 participants