UNPKG
@lucasroll62/nuxt3-auth
Version:
latest (1.0.1)
1.0.1
1.0.0
An alternative module to @nuxtjs/auth
github.com/lucasroll62/nuxt3-auth
lucasroll62/nuxt3-auth
@lucasroll62/nuxt3-auth
/
dist
/
runtime
/
inc
/
refresh-controller.d.ts
10 lines
(9 loc)
•
305 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
type
{
RefreshableScheme
,
HTTPResponse
}
from
'../../types'
;
import
type
{
Auth
}
from
'../core'
;
export
declare
class
RefreshController
{ #
private
;
scheme
:
RefreshableScheme
;
$auth
:
Auth
;
constructor
(
scheme
:
RefreshableScheme
);
handleRefresh
():
Promise
<
HTTPResponse
|
void
>; }