Skip to content

Commit

Permalink
fix(typings): fix let expression typings
Browse files Browse the repository at this point in the history
  • Loading branch information
bigopon authored and EisenbergEffect committed Sep 30, 2018
1 parent 88cf718 commit a756dfe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/binding-language.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Scope } from 'aurelia-binding';
import { Scope, Expression } from 'aurelia-binding';

function mi(name) {
throw new Error(`BindingLanguage must implement ${name}().`);
Expand Down Expand Up @@ -62,7 +62,7 @@ export class BindingLanguage {
* @param existingExpressions the array that will hold compiled let expressions from the let element
* @return the expression array created from the <let/> element
*/
createLetExpressions(resources: ViewResources, element: Element): LetExpession[] {
createLetExpressions(resources: ViewResources, element: Element): LetExpression[] {
mi('createLetExpressions');
}

Expand Down

0 comments on commit a756dfe

Please sign in to comment.