fix(di): fixed types
This commit is contained in:
parent
1386977a34
commit
2f08ed8d3e
|
@ -46,24 +46,24 @@ export interface SelfFactory {
|
||||||
* Factory for creating {@link ParentMetadata}.
|
* Factory for creating {@link ParentMetadata}.
|
||||||
*/
|
*/
|
||||||
export interface ParentFactory {
|
export interface ParentFactory {
|
||||||
({self: boolean}?): any;
|
(visibility?: {self: boolean}): any;
|
||||||
new ({self: boolean}?): ParentMetadata;
|
new (visibility?: {self: boolean}): ParentMetadata;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Factory for creating {@link AncestorMetadata}.
|
* Factory for creating {@link AncestorMetadata}.
|
||||||
*/
|
*/
|
||||||
export interface AncestorFactory {
|
export interface AncestorFactory {
|
||||||
({self: boolean}?): any;
|
(visibility?: {self: boolean}): any;
|
||||||
new ({self: boolean}?): AncestorMetadata;
|
new (visibility?: {self: boolean}): AncestorMetadata;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Factory for creating {@link UnboundedMetadata}.
|
* Factory for creating {@link UnboundedMetadata}.
|
||||||
*/
|
*/
|
||||||
export interface UnboundedFactory {
|
export interface UnboundedFactory {
|
||||||
({self: boolean}?): any;
|
(visibility?: {self: boolean}): any;
|
||||||
new ({self: boolean}?): UnboundedMetadata;
|
new (visibility?: {self: boolean}): UnboundedMetadata;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue