@types/jquery.tinycarousel
TypeScript icon, indicating that this package has built-in type declarations

1.9.35 • Public • Published

Installation

npm install --save @types/jquery.tinycarousel

Summary

This package contains type definitions for jquery.tinycarousel (http://baijs.nl/tinycarousel/).

Details

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

index.d.ts

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

declare namespace JQueryTinyCarousel {
    export interface JQueryTinyCarouselOptions {
        /**
         * Start block of the carousel. (default: 1)
         */
        start?: number | undefined;
        /**
         * Vertical or horizontal scroller? 'x' or 'y'. (default: 'x')
         */
        axis?: string | undefined;
        /**
         * How many blocks do you want to move at a time? (default: 1)
         */
        display?: number | undefined;
        /**
         * If interval is true and rewind is true it will play in reverse if the last slide is reached. (default: false)
         */
        rewind?: boolean | undefined;
        /**
         * Show left and right navigation buttons? (default: true)
         */
        controls?: boolean | undefined;
        /**
         * Show page number navigation buttons? (default: false)
         */
        pager?: boolean | undefined;
        /**
         * Move to the next block on an interval. (default: false)
         */
        interval?: boolean | undefined;
        /**
         * Interval time in milliseconds. (default: 3000)
         */
        intervaltime?: number | undefined;
        /**
         * Show animation when changing block? (default: true)
         */
        animation?: boolean | undefined;
        /**
         * Time of the animation in miliseconds (default: 1000)
         */
        duration?: number | undefined;
        /**
         * Function that executes after every move (default: null)
         */
        callback?: ((element: HTMLElement, index: number) => void) | undefined;
    }
}
interface JQuery {
    /**
     * Creates a new tinycarousel with the specified, or default, options.
     *
     * @param options The options
     */
    tinycarousel(options?: JQueryTinyCarousel.JQueryTinyCarouselOptions): JQuery;
    /**
     * Moves the tinycarousel to the specified block.
     *
     * @param index The index of the block to move to
     */
    tinycarousel_move(index: number): void;

    /**
     * Starts the interval.
     */
    tinycarousel_start(): void;

    /**
     * Stops the interval.
     */
    tinycarousel_stop(): void;
}

Additional Details

  • Last updated: Tue, 30 Jan 2024 21:35:45 GMT
  • Dependencies: @types/jquery

Credits

These definitions were written by Christiaan Rakowski.

Readme

Keywords

none

Package Sidebar

Install

npm i @types/jquery.tinycarousel

Weekly Downloads

3

Version

1.9.35

License

MIT

Unpacked Size

7.11 kB

Total Files

5

Last publish

Collaborators

  • types