UNPKG

371 BTypeScriptView Raw
1import React from 'react';
2import { IDependency } from '../installer';
3interface Props {
4 active: boolean;
5 dependencies: IDependency[];
6 status: InstallationStatus;
7}
8export declare type InstallationStatus = 'NOT_STARTED' | 'LOADING' | 'INSTALLED' | 'ERROR';
9export default class Install extends React.Component<Props> {
10 render(): JSX.Element;
11}
12export {};