mirror of https://github.com/vector-im/riot-web
ToastStore fix type definition
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>pull/21833/head
parent
a36a03bd05
commit
d477a49160
|
@ -24,7 +24,7 @@ export interface IToast<C extends keyof JSX.IntrinsicElements | JSXElementConstr
|
|||
title: string;
|
||||
icon?: string;
|
||||
component: C;
|
||||
props?: React.ComponentProps<C>;
|
||||
props?: Omit<React.ComponentProps<C>, "toastKey">; // toastKey is injected by ToastContainer
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue