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: {
893893/** Provides access to Client objects. Access it via self.clients within a service worker. */
894894interface Clients {
895895 claim ( ) : Promise < void > ;
896- get ( id : string ) : Promise < any > ;
896+ get ( id : string ) : Promise < Client | undefined > ;
897897 matchAll ( options ?: ClientQueryOptions ) : Promise < ReadonlyArray < Client > > ;
898898 openWindow ( url : string ) : Promise < WindowClient | null > ;
899899}
Original file line number Diff line number Diff line change 26952695 }
26962696 }
26972697 }
2698+ },
2699+ "Clients" : {
2700+ "methods" : {
2701+ "method" : {
2702+ "get" : {
2703+ "override-signatures" : [
2704+ " get(id: string): Promise<Client | undefined>"
2705+ ]
2706+ }
2707+ }
2708+ }
26982709 }
26992710 }
27002711 },
You can’t perform that action at this time.
0 commit comments