From 9c244a6ce341a8158c871ecc54305242fc95e80b Mon Sep 17 00:00:00 2001 From: verekia <522007+verekia@users.noreply.github.com> Date: Mon, 1 Apr 2024 19:06:03 +0700 Subject: [PATCH] docs(core): add tsdoc to util --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 81a9b0e..aa75cfd 100644 --- a/README.md +++ b/README.md @@ -435,8 +435,8 @@ Mana Potion provides a few utility functions that are useful for JS gamedev and - [`lerp`](https://tsdocs.dev/docs/@manapotion/core/functions/lerp.html): Linear interpolation. - [`clamp`](https://tsdocs.dev/docs/@manapotion/core/functions/clamp.html): Clamps a number between a minimum and a maximum value. - [`throttle`](https://tsdocs.dev/docs/@manapotion/core/functions/throttle.html): Throttles a function by a given time in ms. -- `debounce`: Debounces a function by a given time in ms. -- `throttleDebounce`: Throttles a function by a given time in ms, but also makes a final call to it after the throttle time has passed. +- [`debounce`](https://tsdocs.dev/docs/@manapotion/core/functions/debounce.html): Debounces a function by a given time in ms. +- [`throttleDebounce`](https://tsdocs.dev/docs/@manapotion/core/functions/throttleDebounce.html): Throttles a function by a given time in ms, but also makes a final call to it after the throttle time has passed. # Tailwind