File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -167,14 +167,18 @@ export interface ChromeAPI {
167167 auth : {
168168 doOffline ?: ( ) => void ;
169169 getOfflineToken : ( ) => Promise < any > ;
170+ /** @deprecated Use the refreshToken property instead */
170171 getRefreshToken : ( ) => Promise < string > ;
172+ /** @deprecated Use the token property instead */
171173 getToken : ( ) => Promise < string | undefined > ;
172174 getUser : ( ) => Promise < ChromeUser | void > ;
173175 login : ( ) => Promise < any > ;
174176 logout : ( ) => void ;
175177 /** @deprecated will be removed from useChrome hook */
176178 qe : any ;
177179 reAuthWithScopes : ( ...scopes : string [ ] ) => Promise < void > ;
180+ token : string ;
181+ refreshToken : string ;
178182 } ;
179183 createCase : ( fields : Record < string , unknown > ) => void ;
180184 enable : {
You can’t perform that action at this time.
0 commit comments