UNPKG

355 BTypeScriptView Raw
1/**
2 * Prototype 对象
3 */
4declare const Prototype: {
5 /**
6 * 版本
7 */
8 version: string;
9 /**
10 * 空方法
11 *
12 * @return void
13 */
14 emptyFunction: () => void;
15 /**
16 *
17 * @param x 任意参数
18 * @return 任意值
19 */
20 K: (x: any) => any;
21};
22interface Window {
23 Prototype: typeof Prototype;
24}