react-keep-alive
Version:
Package will allow components to maintain their status, to avoid repeated re-rendering.
6 lines (5 loc) • 326 B
TypeScript
import * as React from 'react';
import { IKeepAliveProviderImpl, IKeepAliveProviderProps } from '../components/Provider';
export declare type IKeepAliveContextProps = IKeepAliveProviderImpl & IKeepAliveProviderProps;
declare const KeepAliveContext: React.Context<IKeepAliveContextProps>;
export default KeepAliveContext;