diff --git a/packages/usehooks-ts/src/useCountdown/useCountdown.ts b/packages/usehooks-ts/src/useCountdown/useCountdown.ts index ed33b110..b9adb49a 100644 --- a/packages/usehooks-ts/src/useCountdown/useCountdown.ts +++ b/packages/usehooks-ts/src/useCountdown/useCountdown.ts @@ -45,11 +45,12 @@ type CountdownControllers = { * @see [Documentation](https://usehooks-ts.com/react-hook/use-countdown) * @example * ```tsx - * const [counter, { start, stop, reset }] = useCountdown({ - * countStart: 10, - * intervalMs: 1000, - * isIncrement: false, - * }); + * const [counter, { startCountdown, stopCountdown, resetCountdown }] = + * useCountdown({useCountdown({ + * countStart: 10, + * intervalMs: 1000, + * isIncrement: false, + * }); * ``` */ export function useCountdown({