CacheContent.d.ts 312 B

1234567
  1. import * as React from 'react';
  2. export interface CacheContentProps {
  3. children?: React.ReactNode;
  4. open?: boolean;
  5. }
  6. declare const CacheContent: React.MemoExoticComponent<({ children }: CacheContentProps) => React.ReactElement<any, string | React.JSXElementConstructor<any>>>;
  7. export default CacheContent;