coer-elements 0.0.84 → 0.0.85

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coer-elements",
3
- "version": "0.0.84",
3
+ "version": "0.0.85",
4
4
  "author": "Christian Omar Escamilla Rodríguez",
5
5
  "keywords": [
6
6
  "COER",
@@ -1,10 +1,12 @@
1
1
  export declare class User {
2
2
  private static readonly storage;
3
3
  /** */
4
- static Set<T>(user: T, role: string, jwt: string): void;
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;