We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa9af0e commit 720664cCopy full SHA for 720664c
README.md
@@ -37,6 +37,27 @@ window._env_ = {
37
};
38
```
39
40
+### ⚠️Your database must contain exactly these values, otherwise, you will have to edit something!
41
+```
42
+export interface Employee {
43
+ email: string;
44
+ firstName: string | null;
45
+ lastName: string | null;
46
+ fullName: string | null;
47
+ groups: string[] | null;
48
+ acronym: string;
49
+ location: {
50
+ countryIsocode: string;
51
+ regionIsocode: string
52
+ };
53
+ displayName: string;
54
+ active: boolean;
55
+ locked: boolean;
56
+ visible: boolean;
57
+}
58
59
+
60
61
## 🧱Requirements
62
- NPM
63
- Node.js
0 commit comments