UNPKG

gatsby-cli

Version:

Gatsby command-line interface for creating new sites and running Gatsby commands

9 lines (8 loc) 275 B
/// <reference types="react" /> export interface IProgressbarProps { message: string; current: number; total: number; startTime: [number, number]; } export declare function ProgressBar({ message, current, total, startTime, }: IProgressbarProps): JSX.Element;