ng-devui
Version:
DevUI components based on Angular
12 lines (11 loc) • 335 B
TypeScript
export interface IAnchorBox {
isScrollingToTarget: boolean;
scrollTarget: Element | Window;
defaultAnchor: string;
forceActiveAnchor: Function;
view: {
top?: number;
bottom?: number;
};
}
export type AnchorActiveChangeSource = 'anchor-link' | 'scroll' | 'click-inside' | 'initial' | 'fragment';