mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
zurb-twentytwenty (#43567)
* udating index.d.ts adding unconsolidate() method to Model class * updating index.d.ts * adding selector added selector: JQuery; to support jquer backward compatability. * adding bootstrap-filestylle adding bootstrap-filestylle * adding comments adding comments * update tslint update tslint * adding version adding 1.2.1 to version * unifi signature unifi signature * update version update version * Update index.d.ts * bootstrap-multiselect bootstrap-multiselect * Update tsconfig.json * Update index.d.ts * Update index.d.ts * Update index.d.ts * Update index.d.ts * Update index.d.ts * Update index.d.ts * Update index.d.ts * Update index.d.ts * create zurb-twentytwenty Create a type definition for zurb-twentytwenty * Update tsconfig.json * Update index.d.ts * Update index.d.ts * Update index.d.ts * update files * Update index.d.ts
This commit is contained in:
parent
03fe050642
commit
26470d8f6d
22
types/zurb-twentytwenty/index.d.ts
vendored
Normal file
22
types/zurb-twentytwenty/index.d.ts
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
// Type definitions for zurb.twentytwenty 0.1
|
||||
// Project: https://github.com/zurb/twentytwenty
|
||||
// Definitions by: Mustafa Salaheldin <https://github.com/mustafasalahuldin>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.3
|
||||
|
||||
/// <reference types="jquery"/>
|
||||
|
||||
interface TwentyTwentyOptions {
|
||||
default_offset_pct?: number;
|
||||
orientation?: string;
|
||||
before_label?: string;
|
||||
after_label?: string;
|
||||
no_overlay?: boolean;
|
||||
move_slider_on_hover?: boolean;
|
||||
move_with_handle_only?: boolean;
|
||||
click_to_move?: boolean;
|
||||
}
|
||||
|
||||
interface JQuery {
|
||||
twentytwenty(options?: TwentyTwentyOptions): JQuery;
|
||||
}
|
||||
25
types/zurb-twentytwenty/tsconfig.json
Normal file
25
types/zurb-twentytwenty/tsconfig.json
Normal file
@ -0,0 +1,25 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"module": "commonjs",
|
||||
"lib": [
|
||||
"dom",
|
||||
"es6"
|
||||
],
|
||||
"noImplicitAny": true,
|
||||
"noImplicitThis": true,
|
||||
"strictNullChecks": true,
|
||||
"strictFunctionTypes": true,
|
||||
"baseUrl": "../",
|
||||
"typeRoots": [
|
||||
"../"
|
||||
],
|
||||
"types": [],
|
||||
"noEmit": true,
|
||||
"forceConsistentCasingInFileNames": true
|
||||
},
|
||||
"files": [
|
||||
|
||||
"index.d.ts"
|
||||
|
||||
]
|
||||
}
|
||||
8
types/zurb-twentytwenty/tslint.json
Normal file
8
types/zurb-twentytwenty/tslint.json
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"extends": "dtslint/dt.json",
|
||||
"rules": {
|
||||
|
||||
"interface-name": [true, "never-prefix"]
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user