mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-01-29 21:17:34 +00:00
20 lines
506 B
TypeScript
20 lines
506 B
TypeScript
// Type definitions for jQuery Succinct v1.1.0
|
|
// Project: http://mikeking.io/succinct/
|
|
// Definitions by: Matt Brooks <https://github.com/EnableSoftware>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.3
|
|
|
|
/// <reference types="jquery" />
|
|
|
|
declare namespace JQuerySuccinct {
|
|
interface Options {
|
|
size?: number;
|
|
omission?: string;
|
|
ignore?: boolean;
|
|
}
|
|
}
|
|
|
|
interface JQuery {
|
|
succinct(settings?: JQuerySuccinct.Options): JQuery;
|
|
}
|