Files
DefinitelyTyped/types/headroom/index.d.ts
2017-08-20 15:37:53 -07:00

31 lines
740 B
TypeScript

// Type definitions for headroom.js v0.7.0
// Project: http://wicky.nillia.ms/headroom.js/
// Definitions by: Jakub Olek <https://github.com/hakubo>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
interface HeadroomOptions {
offset?: number;
tolerance?: any;
classes?: {
initial?: string;
notBottom?: string;
notTop?: string;
pinned?: string;
top?: string;
unpinned?: string;
};
scroller?: Element;
onPin?: () => void;
onUnpin?: () => void;
onTop?: () => void;
onNotTop?: () => void;
onNotBottom?: () => void;
onBottom?: () => void;
}
declare class Headroom {
constructor(element: Node, options?: HeadroomOptions);
constructor(element: Element, options?: HeadroomOptions);
init: () => void;
}