mirror of
https://github.com/Unleash/unleash.git
synced 2024-11-01 19:07:38 +01:00
11 lines
214 B
TypeScript
11 lines
214 B
TypeScript
|
export interface IToast {
|
||
|
type: string;
|
||
|
title: string;
|
||
|
text?: string;
|
||
|
components?: JSX.Element[];
|
||
|
show?: boolean;
|
||
|
persist?: boolean;
|
||
|
confetti?: boolean;
|
||
|
autoHideDuration?: number;
|
||
|
}
|