UNPKG

@daiso-tech/core

Version:

The library offers flexible, framework-agnostic solutions for modern web applications, built on adaptable components that integrate seamlessly with popular frameworks like Next Js.

16 lines (15 loc) 242 B
/** * @module Utilities */ /** * @internal */ export type WithJitterArgs = { jitter: number | null; value: number; randomValue: number; }; /** * @internal */ export declare function withJitter(args: WithJitterArgs): number;