shared-ritm 1.0.91 → 1.0.93
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.
|
@@ -6,6 +6,7 @@ type LoginResponse = {
|
|
|
6
6
|
declare class AuthService extends ApiService {
|
|
7
7
|
login(email: string, password: string): Promise<LoginResponse>;
|
|
8
8
|
logout(): Promise<LoginResponse>;
|
|
9
|
+
userInfo(): Promise<any>;
|
|
9
10
|
configs(): Promise<any>;
|
|
10
11
|
}
|
|
11
12
|
export default function useAuthService(): AuthService;
|
package/package.json
CHANGED