mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-28 17:35:49 +08:00
17 lines
682 B
TypeScript
17 lines
682 B
TypeScript
// Type definitions for Jasmine-fixture 1.0.7
|
|
// Project: https://github.com/searls/jasmine-fixture
|
|
// Definitions by: Craig Brett <https://github.com/craigbrett17/>
|
|
// Definitions: https://github.com/DefinitelyTyped/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;
|
|
}
|