mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
11 lines
182 B
TypeScript
11 lines
182 B
TypeScript
type ToastOptions = {
|
|
type: string,
|
|
title: string,
|
|
timeout: number,
|
|
};
|
|
|
|
declare const useToast: () => {
|
|
show: (options: ToastOptions) => void,
|
|
};
|
|
|
|
export = useToast;
|