Skip to content

Commit

Permalink
chore(all): prepare release 1.0.0-beta.1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Mar 22, 2016
1 parent ccf6097 commit 8b9baba
Show file tree
Hide file tree
Showing 15 changed files with 930 additions and 1,217 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-dependency-injection",
"version": "1.0.0-beta.1.1.5",
"version": "1.0.0-beta.1.2.0",
"description": "A lightweight, extensible dependency injection container for JavaScript.",
"keywords": [
"aurelia",
Expand Down
21 changes: 18 additions & 3 deletions dist/amd/aurelia-dependency-injection.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
declare module 'aurelia-dependency-injection' {
import { protocol, metadata } from 'aurelia-metadata';
import { AggregateError } from 'aurelia-pal';
import {
protocol,
metadata
} from 'aurelia-metadata';
import {
AggregateError
} from 'aurelia-pal';

/**
* Used to allow functions/classes to specify custom dependency resolution logic.
Expand Down Expand Up @@ -70,6 +75,10 @@ declare module 'aurelia-dependency-injection' {
*/
export const resolver: Function;

/**
* Used to allow functions/classes to specify lazy resolution logic.
*/

/**
* Used to allow functions/classes to specify lazy resolution logic.
*/
Expand Down Expand Up @@ -229,6 +238,9 @@ declare module 'aurelia-dependency-injection' {
*/
export function factory(potentialTarget?: any): any;

/**
* An Invoker that is used to invoke a factory method.
*/
/**
* An Invoker that is used to invoke a factory method.
*/
Expand All @@ -237,7 +249,7 @@ declare module 'aurelia-dependency-injection' {
/**
* The singleton instance of the FactoryInvoker.
*/
static instance: any;
static instance: FactoryInvoker;

/**
* Invokes the function with the provided dependencies.
Expand Down Expand Up @@ -274,6 +286,9 @@ declare module 'aurelia-dependency-injection' {
*/
export function singleton(keyOrRegisterInChild?: any, registerInChild?: boolean): any;

/**
* Used to allow functions/classes to indicate that they should be registered as transients with the container.
*/
/**
* Used to allow functions/classes to indicate that they should be registered as transients with the container.
*/
Expand Down
Loading

0 comments on commit 8b9baba

Please sign in to comment.