UNPKG

@localazy/strapi-plugin

Version:

The official Strapi Plugin by Localazy.

12 lines (11 loc) 213 B
/** * Admin panel user model * * Feel free to extend this model with additional properties */ export type AdminPanelUser = { id: number; firstname: string; lastname?: string; email: string; };