AsyncComponent.d.ts 195 Bytes
Newer Older
1 2 3 4 5 6 7
import { SFC, ComponentType } from 'react';
interface Props {
    as: ComponentType<any>;
    getInitialProps?: (props: any) => any;
}
export declare const AsyncComponent: SFC<Props>;
export {};