UNPKG

kxd-react-route-cache

Version:

change color from react-route-cache for my project

18 lines (17 loc) 435 B
import { CSSProperties, FC } from 'react'; import { ReactNode } from 'react'; interface KeepAliveProps { include?: Array<string>; exclude?: Array<string>; max?: number; children?: ReactNode; style?: CSSProperties; className?: string; styles?: { wrapper?: CSSProperties; content?: CSSProperties; }; [key: string]: any; } export declare const KeepAlive: FC<KeepAliveProps>; export {};