@furystack/auth-google
Version:
Google Authentication Provider for FuryStack
12 lines • 318 B
TypeScript
import type { RequestAction } from '@furystack/rest-service';
import type { User } from '@furystack/core';
/**
* HTTP Request action for Google Logins
*/
export declare const GoogleLoginAction: RequestAction<{
result: User;
body: {
token: string;
};
}>;
//# sourceMappingURL=login-action.d.ts.map