# Installation
> `npm install --save @types/jasmine-fixture`

# Summary
This package contains type definitions for jasmine-fixture (https://github.com/searls/jasmine-fixture).

# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jasmine-fixture.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jasmine-fixture/index.d.ts)
````ts
/// <reference types="jasmine" />

/**
 * Affixes the given jquery selectors into the body and will be removed after each spec
 * @param 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 selector The JQuery selector to be added to the dom
     */
    affix(selector: string): JQuery;
}

````

### Additional Details
 * Last updated: Tue, 07 Nov 2023 03:09:37 GMT
 * Dependencies: [@types/jasmine](https://npmjs.com/package/@types/jasmine)

# Credits
These definitions were written by [Craig Brett](https://github.com/craigbrett17).
