@plteam/chat-ui
Version:
CUI Kit is a free and open-source library for creating AI assistant chat interfaces, built with React, Material UI, and TypeScript
11 lines (10 loc) • 355 B
TypeScript
import { onShowAlertType } from "../types/onShowAlertType";
import { ObservableReactValue } from "../utils/observers";
declare class SnackbarModel {
readonly open: ObservableReactValue<boolean>;
title: string;
show: onShowAlertType;
close: () => void;
constructor(callback?: onShowAlertType);
}
export default SnackbarModel;