coer-elements 0.0.83 → 0.0.85
Sign up to get free protection for your applications and to get access to all the features.
- package/fesm2022/coer-elements-components.mjs +12 -6
- package/fesm2022/coer-elements-components.mjs.map +1 -1
- package/fesm2022/coer-elements-tools.mjs +19 -5
- package/fesm2022/coer-elements-tools.mjs.map +1 -1
- package/interfaces/lib/login-response.interface.d.ts +1 -0
- package/package.json +1 -1
- package/tools/lib/user.class.d.ts +3 -1
package/package.json
CHANGED
@@ -1,10 +1,12 @@
|
|
1
1
|
export declare class User {
|
2
2
|
private static readonly storage;
|
3
3
|
/** */
|
4
|
-
static Set
|
4
|
+
static Set(user: string, fullName: string, role: string, jwt: string): void;
|
5
5
|
/** */
|
6
6
|
static Get<T>(): T | null;
|
7
7
|
/** */
|
8
|
+
static GetFullName(): string | null;
|
9
|
+
/** */
|
8
10
|
static GetRole(): string | null;
|
9
11
|
/** */
|
10
12
|
static GetJWT(): string | null;
|