| | |
| | | import { TdOverlayProps as OverlayProps } from '../overlay/index'; |
| | | export interface TdToastProps { |
| | | style?: { |
| | | type: StringConstructor; |
| | | value?: string; |
| | | }; |
| | | direction?: { |
| | | type: StringConstructor; |
| | | value?: 'row' | 'column'; |
| | |
| | | type: NumberConstructor; |
| | | value?: number; |
| | | }; |
| | | externalClasses?: { |
| | | type: ArrayConstructor; |
| | | value?: ['t-class']; |
| | | }; |
| | | icon?: { |
| | | type: null; |
| | | value?: string; |
| | | value?: string | object; |
| | | }; |
| | | message?: { |
| | | type: StringConstructor; |
| | |
| | | }; |
| | | overlayProps?: { |
| | | type: ObjectConstructor; |
| | | value?: object; |
| | | value?: OverlayProps; |
| | | }; |
| | | placement?: { |
| | | type: StringConstructor; |
| | |
| | | type: StringConstructor; |
| | | value?: 'loading' | 'success' | 'error'; |
| | | }; |
| | | usingCustomNavbar?: { |
| | | type: BooleanConstructor; |
| | | value?: boolean; |
| | | }; |
| | | } |