mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-25 23:03:36 +01:00
7 lines
189 B
TypeScript
7 lines
189 B
TypeScript
import React from 'react';
|
|
export interface ToastContextType {
|
|
onClose?: (e: Event) => void;
|
|
}
|
|
declare const ToastContext: React.Context<ToastContextType>;
|
|
export default ToastContext;
|