UNPKG

@mdui/jq

Version:

拥有和 jQuery 相似 API 的轻量级 JavaScript 工具库

30 lines (29 loc) 615 B
declare module '../shared/core.js' { interface JQ<T = HTMLElement> { /** * 获取集合中指定索引位置的元素 * @param index 索引位置 * @example ```js // 获取第 3 个 p 元素 $('p').get(2) ``` * @example ```js // 获取最后一个 p 元素 $('p').get(-1) ``` */ get(index: number): T; /** * 获取集合中所有元素组成的数组 * @example ```js // 获取所有 p 元素组成的数组 $('p').get() ``` */ get(): T[]; } } export {};