UNPKG

203 BTypeScriptView Raw
1import { Action } from './Action';
2/**
3 * Special function used to get currently authorized user.
4 */
5export type CurrentUserChecker = <User = any>(action: Action) => Promise<User | null> | User | null;