File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -46,24 +46,24 @@ export interface SelfFactory {
4646 * Factory for creating {@link ParentMetadata}.
4747 */
4848export interface ParentFactory {
49- ( { self : boolean } ? ) : any ;
50- new ( { self : boolean } ? ) : ParentMetadata ;
49+ ( visibility ?: { self : boolean } ) : any ;
50+ new ( visibility ?: { self : boolean } ) : ParentMetadata ;
5151}
5252
5353/**
5454 * Factory for creating {@link AncestorMetadata}.
5555 */
5656export interface AncestorFactory {
57- ( { self : boolean } ? ) : any ;
58- new ( { self : boolean } ? ) : AncestorMetadata ;
57+ ( visibility ?: { self : boolean } ) : any ;
58+ new ( visibility ?: { self : boolean } ) : AncestorMetadata ;
5959}
6060
6161/**
6262 * Factory for creating {@link UnboundedMetadata}.
6363 */
6464export interface UnboundedFactory {
65- ( { self : boolean } ? ) : any ;
66- new ( { self : boolean } ? ) : UnboundedMetadata ;
65+ ( visibility ?: { self : boolean } ) : any ;
66+ new ( visibility ?: { self : boolean } ) : UnboundedMetadata ;
6767}
6868
6969/**
You can’t perform that action at this time.
0 commit comments