matrix-react-sdk
Version:
SDK for matrix.org using React
11 lines (10 loc) • 324 B
TypeScript
import React from "react";
import { IProps as IGenericToastProps } from "./GenericToast";
interface IProps extends IGenericToastProps {
toastKey: string;
numSeconds: number;
dismissLabel: string;
onDismiss?(): any;
}
declare const GenericExpiringToast: React.FC<IProps>;
export default GenericExpiringToast;