3.0.3 • Published 4 months ago

@types/htmlbars-inline-precompile v3.0.3

Weekly downloads
34,204
License
MIT
Repository
github
Last release
4 months ago

Installation

npm install --save @types/htmlbars-inline-precompile

Summary

This package contains type definitions for htmlbars-inline-precompile (https://github.com/ember-cli/ember-cli-htmlbars-inline-precompile).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/htmlbars-inline-precompile.

index.d.ts

// Type definitions for non-npm package htmlbars-inline-precompile 3.0
// Project: https://github.com/ember-cli/ember-cli-htmlbars-inline-precompile
// Definitions by: Dan Freeman <https://github.com/dfreeman>
//                 James C. Davis <https://github.com/jamescdavis>
//                 Chris Krycho <https://github.com/chriskrycho>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

// This is a bit of a funky one: it's from a [Babel plugin], but is exported for
// Ember applications as the module `"htmlbars-inline-precompile"`. It acts
// like a tagged string from the perspective of consumers, but is actually an
// AST transformation which generates a function as its output. That function in
// turn [generates a string or array of strings][output] to use with the Ember
// testing helper `this.render()`.
//
// [Babel plugin]: https://github.com/ember-cli/babel-plugin-htmlbars-inline-precompile#babel-plugin-htmlbars-inline-precompile-
// [output]: https://github.com/emberjs/ember-test-helpers/blob/77f9a53da9d8c19a85b3122788caadbcc59274c2/lib/ember-test-helpers/-legacy-overrides.js#L17-L42

// This uses the same "brand" as the types for `ember-cli-htmlbars` for
// backwards compatibility. The actual value of the brand doesn't matter; it is
// only important that it (a) is distinct and (b) interoperates with existing
// uses of the `hbs` export from [`htmlbars-inline-precompile`][1] and
// [`ember-cli-htmlbars`][2].
//
// [1]:
// https://github.com/DefinitelyTyped/DefinitelyTyped/blob/24a21e0b8ec7eccdec781d7513bfa5947f1c6e20/types/ember/index.d.ts#L540:L542
// [2]:
// https://github.com/ember-cli/ember-cli-htmlbars/blob/ff397bb00b065d97b00111de5ae1e4240a778f26/lib/index.d.ts
//
// Note that we do export this; the details are irrelevant to consumers. The
// point is simply to have a *distinct* type that is therefore not substitutable
// for just any other type. (In the future, we will coordinate a change which
// makes this export only the type side of a class with a private property, such
// that it *cannot* be used.)
export interface TemplateFactory {
    __htmlbars_inline_precompile_template_factory: any;
}

export default function hbs(tagged: TemplateStringsArray): TemplateFactory;

Additional Details

  • Last updated: Fri, 21 Jan 2022 19:02:15 GMT
  • Dependencies: none
  • Global values: none

Credits

These definitions were written by Dan Freeman, James C. Davis, and Chris Krycho.

3.0.3

4 months ago

3.0.2

6 months ago

3.0.1

7 months ago

3.0.0

2 years ago

1.0.1

5 years ago

1.0.0

7 years ago