Initial commit... added file and empty tsparams file

This commit is contained in:
Craig Brett
2013-12-23 14:49:15 +00:00
parent 9e1fe49fa0
commit 0bcf347382
2 changed files with 17 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
// Type definitions for Jasmine-fixture 1.0.7
// Project: https://github.com/searls/jasmine-fixture
// Definitions by: Craig Brett <https://github.com/craigbrett17/>
// DefinitelyTyped: https://github.com/borisyankov/DefinitelyTyped
/** Affixes the given jquery selectors into the body and will be removed after each spec
* @param {string} selector The JQuery selector to be added to the dom
*/
declare function affix(selector: string): JQuery;
interface JQuery {
/** Affixes the given jquery selectors into the element and will be removed after each spec
* @param {string} selector The JQuery selector to be added to the dom
*/
affix(selector: string): JQuery;
}
@@ -0,0 +1 @@
""