1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- import type { CSSProperties } from 'vue';
- import type { Key, VueNode } from '../_util/type';
- import type { NotificationInstance } from '../vc-notification/Notification';
- export declare function getKeyThenIncreaseKey(): number;
- export interface ConfigOptions {
- top?: string;
- duration?: number;
- prefixCls?: string;
- getContainer?: () => HTMLElement;
- transitionName?: string;
- maxCount?: number;
- rtl?: boolean;
- }
- export declare type NoticeType = 'info' | 'success' | 'error' | 'warning' | 'loading';
- export interface ThenableArgument {
- (val: any): void;
- }
- export interface MessageType extends PromiseLike<any> {
- (): void;
- }
- export interface MessageArgsProps {
- content: string | (() => VueNode) | VueNode;
- duration?: number;
- type?: NoticeType;
- prefixCls?: string;
- rootPrefixCls?: string;
- getPopupContainer?: (triggerNode: HTMLElement) => HTMLElement;
- onClose?: () => void;
- icon?: (() => VueNode) | VueNode;
- key?: string | number;
- style?: CSSProperties;
- class?: string;
- appContext?: any;
- onClick?: (e: MouseEvent) => void;
- }
- declare type ConfigDuration = number;
- declare type JointContent = VueNode | MessageArgsProps;
- export declare type ConfigOnClose = () => void;
- export declare function attachTypeApi(originalApi: MessageApi, type: NoticeType): void;
- export interface MessageInstance {
- info(content: JointContent, duration?: ConfigDuration, onClose?: ConfigOnClose): MessageType;
- success(content: JointContent, duration?: ConfigDuration, onClose?: ConfigOnClose): MessageType;
- error(content: JointContent, duration?: ConfigDuration, onClose?: ConfigOnClose): MessageType;
- warning(content: JointContent, duration?: ConfigDuration, onClose?: ConfigOnClose): MessageType;
- loading(content: JointContent, duration?: ConfigDuration, onClose?: ConfigOnClose): MessageType;
- open(args: MessageArgsProps): MessageType;
- }
- export interface MessageApi extends MessageInstance {
- warn(content: JointContent, duration?: ConfigDuration, onClose?: ConfigOnClose): MessageType;
- config(options: ConfigOptions): void;
- destroy(messageKey?: Key): void;
- }
- /** @private test Only function. Not work on production */
- export declare const getInstance: () => NotificationInstance;
- declare const _default: MessageApi;
- export default _default;
|