{
    "api": [{
            "title": "全局配置（NZ_NOTIFICATION_CONFIG）",
            "data": {
                "header": [
                    {
                        "name": "参数",
                        "key": "name"
                    },
                    {
                        "name": "说明",
                        "key": "intro"
                    },
                    {
                        "name": "类型",
                        "key": "type"
                    },
                    {
                        "name": "默认值",
                        "key": "value"
                    }
                ],
                "list": [{
                        "name": "nzTop",
                        "intro": "顶部距离",
                        "type": "String",
                        "value": "24px"
                    },
                    {
                        "name": "nzRight",
                        "intro": "右侧距离",
                        "type": "String",
                        "value": "0px"
                    },
                    {
                        "name": "nzDuration",
                        "intro": "持续时间,当设置为0时不消失（可用于NzNotificationService中",
                        "type": "Number",
                        "value": "0"
                    },
                    {
                        "name": "nzMaxStack",
                        "intro": "提示最大堆叠数",
                        "type": "Number",
                        "value": "8"
                    },
                    {
                        "name": "nzPauseOnHover",
                        "intro": "悬停时停止倒计时（可用于NzNotificationService中",
                        "type": "Boolean",
                        "value": "true"
                    },
                    {
                        "name": "nzAnimate",
                        "intro": "开关动画效果（可用于NzNotificationService中",
                        "type": "Boolean",
                        "value": "true"
                    }
                ]
            }

        },
        {
            "title": "NzNotificationService服务",
            "data": {
                "header": [{
                        "name": "方法",
                        "key": "method"
                    },
                    {
                        "name": "参数",
                        "key": "params"
                    },
                    {
                        "name": "说明",
                        "key": "intro"
                    }
                ],
                "list": [{
                        "method": "blank",
                        "params": "(title: string, content: string, options?: Object)",
                        "intro": "不带图标的提示"
                    },
                    {
                        "method": "success",
                        "params": "(title: string, content: string, options?: Object)",
                        "intro": "成功提示"
                    },
                    {
                        "method": "error",
                        "params": "(title: string, content: string, options?: Object)",
                        "intro": "失败提示"
                    },
                    {
                        "method": "warning",
                        "params": "(title: string, content: string, options?: Object)",
                        "intro": "警告提示"
                    },
                    {
                        "method": "info",
                        "params": "(title: string, content: string, options?: Object)",
                        "intro": "信息提示"
                    },
                    {
                        "method": "create",
                        "params": "(type: string, title: string, content: string, options?: Object)",
                        "intro": "提供type属性，可传入'success'等选项"
                    },
                    {
                        "method": "html",
                        "params": "(html: string, options?: Object)",
                        "intro": "可使用html代码来渲染内容"
                    },
                    {
                        "method": "remove",
                        "params": "(id?: string)",
                        "intro": "移除特定id的消息，当id为空时，移除所有消息"
                    }
                ]
            }

        }
    ]
}