{
    "api": [{
        "title": "全局配置（NZ_MESSAGE_CONFIG）",
        "data": {
            "header": [{
                    "name": "参数",
                    "key": "param"
                },
                {
                    "name": "说明",
                    "key": "intro"
                },
                {
                    "name": "类型",
                    "key": "type"
                },
                {
                    "name": "默认值",
                    "key": "defaultValue"
                }
            ],
        "list": [{
                "param": "nzDuration",
                "intro": "持续时间,当设置为0时不消失（可用于NzNotificationService中）",
                "type": "Number",
                "defaultValue": "0"
            },
            {
                "param": "nzMaxStack",
                "intro": "可展示的最大提示数量",
                "type": "Number",
                "defaultValue": "8"
            },
            {
                "param": "nzPauseOnHover",
                "intro": "鼠标移上时暂停倒计时（可用于NzNotificationService中）",
                "type": "Boolean",
                "defaultValue": "true"
            },
            {
                "param": "nzAnimate",
                "intro": "开关动画效果（可用于NzNotificationService中）",
                "type": "Boolean",
                "defaultValue": "true"
            }]
        }
    },{
        "title": "NzMessageService服务",
        "data": {
            "header": [{
                    "name": "方法",
                    "key": "method"
                },
                {
                    "name": "说明",
                    "key": "intro"
                },
                {
                    "name": "参数",
                    "key": "param"
                }
            ],
        "list": [{
                "method": "loading",
                "intro": "加载中",
                "param": "(content: string, options?: Object)"
            },{
                "method": "success",
                "intro": "成功消息",
                "param": "(content: string, options?: Object)"
            },{
                "method": "error",
                "intro": "失败消息",
                "param": "(content: string, options?: Object)"
            },{
                "method": "warning",
                "intro": "警告消息",
                "param": "(content: string, options?: Object)"
            },{
                "method": "info",
                "intro": "信息消息",
                "param": "(content: string, options?: Object)"
            },{
                "method": "create",
                "intro": "提供type属性，可传入'success'等选项",
                "param": "(type: string, content: string, options?: Object)"
            },{
                "method": "html",
                "intro": "可使用html代码来渲染内容",
                "param": "(html: string, options?: Object)"
            },{
                "method": "remove",
                "intro": "移除特定id的消息，当id为空时，移除所有消息",
                "param": "(id?: string)"
            }
        ]
        }
        
    }]
}