mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00:00
17 lines
437 B
TypeScript
17 lines
437 B
TypeScript
|
import * as React from 'react';
|
||
|
import { CSSModule } from './index';
|
||
|
import { FadeProps } from './Fade';
|
||
|
|
||
|
export interface ToastProps extends React.HTMLAttributes<HTMLElement> {
|
||
|
[key: string]: any;
|
||
|
tag?: React.ElementType;
|
||
|
cssModule?: CSSModule;
|
||
|
innerRef?: React.Ref<HTMLElement>;
|
||
|
isOpen?: boolean;
|
||
|
fade?: boolean;
|
||
|
transition?: FadeProps;
|
||
|
}
|
||
|
|
||
|
declare class Toast extends React.Component<ToastProps> {}
|
||
|
export default Toast;
|