UNPKG

ngx-page-scroll-core

Version:

Animated scrolling functionality for angular written in pure typescript

10 lines (9 loc) 329 B
/** * Examples may be found at https://github.com/gdsmith/jquery.easing/blob/master/jquery.easing.js * or http://gizma.com/easing/ * @param t current time * @param b beginning value * @param c change In value * @param d duration */ export declare type EasingLogic = (t: number, b: number, c: number, d: number) => number;