Home > @elux/react-web > PickModelActions

PickModelActions type

*

Signature:

export declare type PickModelActions<T> = Pick<{
    [K in keyof T]: HandlerToAction<T[K]>;
}, {
    [K in keyof T]: T[K] extends Function ? Exclude<K, 'onActive' | 'onInactive' | 'onMount'> : never;
}[keyof T]>;

References: HandlerToAction