Update ScrollToFixed definitions

This commit is contained in:
Ben Dixon
2015-06-18 15:27:56 +01:00
parent dea8dc1a00
commit 018e116d13
+4 -2
View File
@@ -13,10 +13,10 @@ declare module ScrollToFixed {
zIndex? : number;
spacerClass? : string;
preFixed?: () => void;
fixed?: () => void;
postFixed?: () => void;
preUnfixed?: () => void;
fixed?: () => void;
unfixed?: () => void;
preUnfixed?: () => void;
postUnfixed?: () => void;
preAbsolute?: () => void;
postAbsolute?: () => void;
@@ -26,6 +26,8 @@ declare module ScrollToFixed {
dontCheckForPositionFixedSupport? : boolean;
dontSetWidth? : boolean;
removeOffsets? : boolean;
baseClassName?: string;
className?: string;
}
}