mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-10 11:40:16 +08:00
Big replacement: bool with boolean
This commit is contained in:
Vendored
+19
-19
@@ -15,33 +15,33 @@ interface FancyboxOptions {
|
||||
minHeight?: number;
|
||||
maxWidth?: number;
|
||||
maxHeight?: number;
|
||||
autoSize?: bool;
|
||||
autoHeight?: bool;
|
||||
autoWidth?: bool;
|
||||
autoResize?: bool;
|
||||
autoCenter?: bool;
|
||||
fitToView?: bool;
|
||||
aspectRatio?: bool;
|
||||
autoSize?: boolean;
|
||||
autoHeight?: boolean;
|
||||
autoWidth?: boolean;
|
||||
autoResize?: boolean;
|
||||
autoCenter?: boolean;
|
||||
fitToView?: boolean;
|
||||
aspectRatio?: boolean;
|
||||
topRatio?: number;
|
||||
leftRatio?: number;
|
||||
scrolling?: string;
|
||||
wrapCSS?: string;
|
||||
arrows?: bool;
|
||||
closeBtn?: bool;
|
||||
closeClick?: bool;
|
||||
nextClick?: bool;
|
||||
mouseWheel?: bool;
|
||||
autoPlay?: bool;
|
||||
arrows?: boolean;
|
||||
closeBtn?: boolean;
|
||||
closeClick?: boolean;
|
||||
nextClick?: boolean;
|
||||
mouseWheel?: boolean;
|
||||
autoPlay?: boolean;
|
||||
playSpeed?: number;
|
||||
preload?: number;
|
||||
modal?: bool;
|
||||
loop?: bool;
|
||||
modal?: boolean;
|
||||
loop?: boolean;
|
||||
ajax?: any;
|
||||
iframe?: any;
|
||||
swf?: any;
|
||||
keys?: any;
|
||||
direction?: any;
|
||||
scrollOutside?: bool;
|
||||
scrollOutside?: boolean;
|
||||
index?: number;
|
||||
type?: string;
|
||||
href?: string;
|
||||
@@ -64,8 +64,8 @@ interface FancyboxOptions {
|
||||
nextEasing?: string;
|
||||
prevEasing?: string;
|
||||
|
||||
openOpacity?: bool;
|
||||
closeOpacity?: bool;
|
||||
openOpacity?: boolean;
|
||||
closeOpacity?: boolean;
|
||||
|
||||
openMethod?: string;
|
||||
closeMethod?: string;
|
||||
@@ -78,7 +78,7 @@ interface FancyboxOptions {
|
||||
interface FancyboxMethods {
|
||||
open(group?: any[], options?: FancyboxOptions);
|
||||
cancel();
|
||||
close(force?: bool);
|
||||
close(force?: boolean);
|
||||
play();
|
||||
next();
|
||||
prev();
|
||||
|
||||
Reference in New Issue
Block a user