stremio-web/src/common/Toast/useToast.d.ts
2025-06-18 09:48:12 +02:00

11 lines
182 B
TypeScript

type ToastOptions = {
type: string,
title: string,
timeout: number,
};
declare const useToast: () => {
show: (options: ToastOptions) => void,
};
export = useToast;