@glimmer/runtime
Version:
Minimal runtime needed to render Glimmer templates
23 lines (17 loc) • 505 B
TypeScript
declare const _default: object;
/**
Concatenates the given arguments into a string.
Example:
```handlebars
{{some-component name=(concat firstName " " lastName)}}
{{! would pass name="<first name value> <last name value>" to the component}}
```
or for angle bracket invocation, you actually don't need concat at all.
```handlebars
<SomeComponent @name="{{firstName}} {{lastName}}" />
```
@public
@method concat
*/
export default _default;
//# sourceMappingURL=concat.d.ts.map