declare module zs {
    /**
     * APP SDK 接口
     */
    class Native {

        /**
         * 接口初始化，必须在执行其他方法前调用
         */
        public static init();

        /**
         * 接口是否已初始化
         */
        public static get isReady();

        public static PlayVideo(thisAry: any, callback: (obj: any) => void);

         /**
          * 页面事件处理
          */
         public static handleAd(eventName:string);

    }
}