Interface ScrollbarOptions

interface ScrollbarOptions {
    embed?: boolean;
    onScrollEnd?: ((this) => void);
    onSyncPosition?: ((this) => void);
    startPositionX: number;
    startPositionY: number;
    step: number;
    wheelAmountStep: number;
}

Properties

embed?: boolean
onScrollEnd?: ((this) => void)

Type declaration

onSyncPosition?: ((this) => void)

Type declaration

startPositionX: number
startPositionY: number
step: number
wheelAmountStep: number