UNPKG

348 BPlain TextView Raw
1/**
2 * Currently logged in admin
3 *
4 * @alias CurrentAdmin
5 * @memberof AdminBro
6 */
7export type CurrentAdmin = {
8 /**
9 * Admin has one required field which is an email
10 */
11 email: string;
12 /**
13 * Also you can put as many other fields to it as you like.
14 */
15 [key: string]: any;
16
17 /**
18 * Id of your admin user
19 */
20 id?: string;
21}