You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.1 KiB
47 lines
1.1 KiB
import type * as React from 'react';
|
|
|
|
export type NoticeType = 'info' | 'success' | 'error' | 'warning' | 'loading';
|
|
|
|
export interface ConfigOptions {
|
|
top?: number;
|
|
duration?: number;
|
|
prefixCls?: string;
|
|
getContainer?: () => HTMLElement;
|
|
transitionName?: string;
|
|
maxCount?: number;
|
|
rtl?: boolean;
|
|
}
|
|
|
|
export interface ArgsProps {
|
|
content: React.ReactNode;
|
|
duration?: number;
|
|
type?: NoticeType;
|
|
onClose?: () => void;
|
|
icon?: React.ReactNode;
|
|
key?: string | number;
|
|
style?: React.CSSProperties;
|
|
className?: string;
|
|
onClick?: (e: React.MouseEvent<HTMLDivElement>) => void;
|
|
}
|
|
|
|
export type JointContent = React.ReactNode | ArgsProps;
|
|
|
|
export interface MessageType extends PromiseLike<boolean> {
|
|
(): void;
|
|
}
|
|
|
|
export type TypeOpen = (
|
|
content: JointContent,
|
|
duration?: number | VoidFunction, // Also can use onClose directly
|
|
onClose?: VoidFunction,
|
|
) => MessageType;
|
|
|
|
export interface MessageInstance {
|
|
info: TypeOpen;
|
|
success: TypeOpen;
|
|
error: TypeOpen;
|
|
warning: TypeOpen;
|
|
loading: TypeOpen;
|
|
open(args: ArgsProps): MessageType;
|
|
destroy(key?: React.Key): void;
|
|
}
|
|
|