@bcc-code/vue-bcc-chat-ui 4.2.0 → 4.2.1

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.
@@ -2,7 +2,8 @@ interface StoredToken {
2
2
  sub: string;
3
3
  token: string;
4
4
  }
5
- export declare function getAccessToken(): string;
5
+ export declare function getAccessToken(): string | null;
6
+ export declare function setAccessToken(token: string | null | undefined): void;
6
7
  export declare const loggedIn: import('vue').Ref<boolean, boolean>;
7
8
  export declare function login(accessToken?: string): Promise<void>;
8
9
  export declare function logout(): Promise<void>;