mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 04:49:15 +08:00
23 lines
561 B
TypeScript
Executable File
23 lines
561 B
TypeScript
Executable File
// 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/borisyankov/DefinitelyTyped
|
|
|
|
/// <reference path="../jquery/jquery.d.ts"/>
|
|
/// <reference path="linq.d.ts"/>
|
|
|
|
declare module linqjs {
|
|
interface Enumerable {
|
|
tojQuery(): JQuery;
|
|
tojQueryAsArray(): JQuery;
|
|
}
|
|
}
|
|
|
|
interface JQuery {
|
|
toEnumerable(): linqjs.Enumerable;
|
|
}
|
|
|
|
interface JQueryStatic {
|
|
Enumerable: linq.EnumerableStatic;
|
|
}
|