UNPKG
@localazy/strapi-plugin
Version:
beta (1.0.0-beta.5)
latest (1.0.8)
1.0.8
1.0.4
1.0.3
1.0.1
1.0.0
1.0.0-beta.5
1.0.0-beta.4
1.0.0-beta.3
1.0.0-beta.2
1.0.0-beta.1
1.0.0-beta.0
0.2.13
0.2.12
0.2.10
0.2.9
0.2.6
0.2.5
0.2.4
0.2.3
0.2.2
0.2.1
0.2.0
0.1.18
0.1.17
0.1.16
0.1.15
0.1.14
0.1.13-rc.7
0.1.13-rc.6
0.1.13-rc.5
0.1.13-rc.4
0.1.13-rc.3
0.1.13-rc.2
0.1.13-rc.1
0.1.13-rc.0
0.1.12
0.1.12-rc.6
0.1.12-rc.5
0.1.12-rc.4
0.1.12-rc.3
0.1.12-rc.2
0.1.12-rc.1
0.1.12-rc.0
0.1.11
0.1.11-rc.2
0.1.11-rc.1
0.1.11-rc.0
0.1.10
0.1.9
0.1.8
0.1.7
0.1.6
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
The official Strapi Plugin by Localazy.
github.com/localazy/strapi-plugin
localazy/strapi-plugin
@localazy/strapi-plugin
/
dist
/
server
/
src
/
db
/
model
/
localazy-user.d.ts
18 lines
(17 loc)
•
345 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
export
interface
Identity
{
accessToken
:
string
;
project
: {
id
:
string
;
image
:
string
;
name
:
string
;
url
:
string
; };
scope
:
string
;
user
: {
id
:
string
;
name
:
string
; }; }
declare
const
KEY
=
"identity"
;
declare
const
emptyIdentity
:
Identity
;
export
{
KEY
, emptyIdentity };