Skip to content

Commit

Permalink
fix(definitions): observable decorator definition
Browse files Browse the repository at this point in the history
  • Loading branch information
Scapal committed Feb 28, 2016
1 parent b200453 commit d6244f2
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/aurelia-binding.d.ts
Expand Up @@ -411,4 +411,10 @@ declare module 'aurelia-binding' {
* An internal API used by Aurelia's array observation components.
*/
export function mergeSplice(splices: any, index: number, removed: any, addedCount: number): any;

/**
* Decorator: Specifies that a property is observable.
* @param targetOrConfig The name of the property, or a configuration object.
*/
export function observable(targetOrConfig?: Object, key?: any, descriptor?: any): any;
}

0 comments on commit d6244f2

Please sign in to comment.