@forestadmin/forestadmin-client
Version:
This package contains the logic to use the ForestAdmin API inside an agent.
17 lines • 334 B
TypeScript
export type UserInfo = {
id: number;
email: string;
firstName: string;
lastName: string;
team: string;
renderingId: number;
role: string;
tags: {
[key: string]: string;
};
permissionLevel: string;
};
export type Tokens = {
accessToken: string;
};
//# sourceMappingURL=types.d.ts.map