fix(di): fixed types

This commit is contained in:
vsavkin 2015-07-17 12:25:12 -07:00
parent 1386977a34
commit 2f08ed8d3e
1 changed files with 6 additions and 6 deletions

View File

@ -46,24 +46,24 @@ export interface SelfFactory {
* Factory for creating {@link ParentMetadata}.
*/
export interface ParentFactory {
({self: boolean}?): any;
new ({self: boolean}?): ParentMetadata;
(visibility?: {self: boolean}): any;
new (visibility?: {self: boolean}): ParentMetadata;
}
/**
* Factory for creating {@link AncestorMetadata}.
*/
export interface AncestorFactory {
({self: boolean}?): any;
new ({self: boolean}?): AncestorMetadata;
(visibility?: {self: boolean}): any;
new (visibility?: {self: boolean}): AncestorMetadata;
}
/**
* Factory for creating {@link UnboundedMetadata}.
*/
export interface UnboundedFactory {
({self: boolean}?): any;
new ({self: boolean}?): UnboundedMetadata;
(visibility?: {self: boolean}): any;
new (visibility?: {self: boolean}): UnboundedMetadata;
}
/**