@firecms/core
Version:
Awesome Firebase/Firestore-based headless open-source CMS
13 lines (12 loc) • 487 B
TypeScript
import { InternalUserManagement, User } from "../types";
/**
* Use this hook to get the internal user management of the app.
* Note that this is different from the user management plugin controller.
* This controller will be eventually replaced by the one provided
* by the user management plugin.
*
* Use at your own risk!
*
* @group Hooks and utilities
*/
export declare const useInternalUserManagementController: <USER extends User = User>() => InternalUserManagement<USER>;