3.3.3 • Published 6 months ago

@types/jquery-migrate v3.3.3

Weekly downloads
638
License
MIT
Repository
github
Last release
6 months ago

Installation

npm install --save @types/jquery-migrate

Summary

This package contains type definitions for jquery-migrate (https://github.com/jquery/jquery-migrate).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jquery-migrate.

index.d.ts

// Type definitions for jquery-migrate 3.3
// Project: https://github.com/jquery/jquery-migrate
// Definitions by: Piotr Błażejewicz <https://github.com/peterblazejewicz>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference types="jquery" />

interface JQueryStatic {
    /**
     * By default, Migrate only gives a specific warning once.
     * If you set this property to false it will give a warning for every occurrence each time it happens.
     * Note that this can generate a lot of output, for example when a warning occurs in a loop.
     * @default true
     */
    migrateDeduplicateWarnings?: boolean | undefined;
    /**
     * An array of string warning messages that have been generated by the code on the page,
     * in the order they were generated. Messages appear in the array only once,
     * even if the condition has occurred multiple times, unless jQuery.migrateReset() is called
     * @default []
     */
    migrateWarnings: string[];

    /**
     * Set this property to `true` to prevent console warnings from being generated in the development version.\
     * The `jQuery.migrateWarnings` array is still maintained when this property is set,
     * which allows programmatic inspection without console output
     * @default false
     */
    migrateMute: boolean;

    /**
     * Set this property to `false` if you want warnings
     * but do not want stack traces to appear on the console.
     * @default true
     */
    migrateTrace: boolean;

    /**
     * Indicates the version of Migrate in use
     */
    readonly migrateVersion: string;

    /**
     * This method clears the `jQuery.migrateWarnings` array and "forgets" the list of messages
     * that have been seen already.
     */
    migrateReset(): void;
    /**
     * If you want to upgrade to jQuery 3.5.0 or newer and don't have time to deal with breaking changes at the moment
     * and you use jQuery Migrate 3.2.0 or newer, you can revert to the previous behavior.
     * @see {@link https://jquery.com/upgrade-guide/3.5/}
     */
    UNSAFE_restoreLegacyHtmlPrefilter(): void;
}

Additional Details

  • Last updated: Thu, 08 Jul 2021 16:22:29 GMT
  • Dependencies: @types/jquery
  • Global values: none

Credits

These definitions were written by Piotr Błażejewicz.

3.3.3

6 months ago

3.3.2

7 months ago

3.3.1

3 years ago

3.3.0

4 years ago

3.1.0

4 years ago