@kinde-oss/kinde-auth-react
Version:
Kinde React SDK for authentication
12 lines • 310 B
TypeScript
import { State } from './types';
import { UserProfile } from '@kinde/js-utils';
type Action = {
type: "INITIALISED";
user: UserProfile;
} | {
type: "ERROR";
error: string;
};
export declare const reducer: (state: State, action: Action) => State;
export {};
//# sourceMappingURL=reducer.d.ts.map