Newer
Older
alert / js / node_modules / flarum / forum / components / AffixedSidebar.d.ts
@Réz István Réz István on 18 Nov 2021 578 bytes first commit
/**
 * The `AffixedSidebar` component uses Bootstrap's "affix" plugin to keep a
 * sidebar navigation at the top of the viewport when scrolling.
 *
 * ### Children
 *
 * The component must wrap an element that itself wraps an <ul> element, which
 * will be "affixed".
 *
 * @see https://getbootstrap.com/docs/3.4/javascript/#affix
 */
export default class AffixedSidebar extends Component<import("../../common/Component").ComponentAttrs> {
    boundOnresize: any;
    onremove(): void;
    onresize(): void;
    bottom: number;
}
import Component from "../../common/Component";