mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-24 05:06:02 +08:00
23 lines
554 B
TypeScript
23 lines
554 B
TypeScript
// Type definitions for linq.jquery (from linq.js)
|
|
// Project: http://linqjs.codeplex.com/
|
|
// Definitions by: neuecc <http://www.codeplex.com/site/users/view/neuecc>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference types="jquery"/>
|
|
/// <reference path="linq.d.ts"/>
|
|
|
|
declare namespace linqjs {
|
|
interface Enumerable {
|
|
tojQuery(): JQuery;
|
|
tojQueryAsArray(): JQuery;
|
|
}
|
|
}
|
|
|
|
interface JQuery {
|
|
toEnumerable(): linqjs.Enumerable;
|
|
}
|
|
|
|
interface JQueryStatic {
|
|
Enumerable: linq.EnumerableStatic;
|
|
}
|