@nteract/mythic-notifications
Version:
A notification system based on blueprintjs toasters and the myths redux framework
11 lines (10 loc) • 459 B
TypeScript
import { Toaster } from "@blueprintjs/core";
import React from "react";
import { Dispatch } from "redux";
import { NotificationSystem } from "../types";
export declare const blueprintjsNotificationSystem: (toaster: Toaster, dispatch: Dispatch) => NotificationSystem;
export declare const NotificationRoot: import("react-redux").ConnectedComponent<React.ComponentClass<{
darkTheme?: boolean | undefined;
}, any>, {
darkTheme?: boolean | undefined;
}>;