File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -893,7 +893,7 @@ declare var Client: {
893
893
/** Provides access to Client objects. Access it via self.clients within a service worker. */
894
894
interface Clients {
895
895
claim ( ) : Promise < void > ;
896
- get ( id : string ) : Promise < any > ;
896
+ get ( id : string ) : Promise < Client | undefined > ;
897
897
matchAll ( options ?: ClientQueryOptions ) : Promise < ReadonlyArray < Client > > ;
898
898
openWindow ( url : string ) : Promise < WindowClient | null > ;
899
899
}
Original file line number Diff line number Diff line change 2695
2695
}
2696
2696
}
2697
2697
}
2698
+ },
2699
+ "Clients" : {
2700
+ "methods" : {
2701
+ "method" : {
2702
+ "get" : {
2703
+ "override-signatures" : [
2704
+ " get(id: string): Promise<Client | undefined>"
2705
+ ]
2706
+ }
2707
+ }
2708
+ }
2698
2709
}
2699
2710
}
2700
2711
},
You can’t perform that action at this time.
0 commit comments