UNPKG

@vgbire/react-keep-alive

Version:
11 lines (10 loc) 280 B
import React, { ReactNode, RefObject, FC } from 'react'; interface ComponentProps { name: string; show: boolean; to: RefObject<HTMLDivElement>; children?: ReactNode; style?: React.CSSProperties; } export declare const Component: FC<ComponentProps>; export {};