UNPKG

304 BTypeScriptView Raw
1/**
2 * Try 对象
3 */
4declare const Try: {
5 /**
6 * 接收任意数目的函数作为参数,返回第一个执行成功的函数(未抛出异常的函数)的结果
7 *
8 * @return 任意函数参数执行结果
9 */
10 these: () => any;
11};
12interface Window {
13 Try: typeof Try;
14}