UNPKG

@localazy/strapi-plugin

Version:

The official Strapi Plugin by Localazy.

18 lines (17 loc) 345 B
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 };