Skip to content

Commit

Permalink
fix(): explicitly define type
Browse files Browse the repository at this point in the history
  • Loading branch information
ihadeed committed Mar 28, 2017
1 parent e7ebfb8 commit ec20b17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/fbml-component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export function FBMLAttribute(target: any, key: string) {
export function FBMLInstanceMethod(target: any, key: string) {
return {
enumerable: true,
value: function(...args) {
value: function(...args: any[]) {
if (this._instance) {
return this._instance[key].apply(this, args);
} else {
Expand Down

0 comments on commit ec20b17

Please sign in to comment.