gatsby-cli
Version:
Gatsby command-line interface for creating new sites and running Gatsby commands
10 lines (9 loc) • 310 B
TypeScript
import React from "react";
import { ActivityLogLevels, LogLevels } from "../../../constants";
export interface IMessageProps {
level: ActivityLogLevels | LogLevels;
text: string;
duration?: number;
statusText?: string;
}
export declare const Message: React.NamedExoticComponent<IMessageProps>;